2000-03-22 22:01:33 +00:00
|
|
|
/**********************************************************************
|
|
|
|
|
|
|
|
FILENAME: uiuc_warnings_errors.cpp
|
|
|
|
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
|
|
|
|
DESCRIPTION:
|
|
|
|
|
|
|
|
Prints to screen the follow:
|
|
|
|
|
|
|
|
- Error Code (errorCode)
|
|
|
|
|
|
|
|
- Message indicating the problem. This message should be preceded by
|
|
|
|
"Warning", "Error" or "Note". Warnings are non-fatal and the code
|
|
|
|
will pause. Errors are fatal and will stop the code. Notes are only
|
|
|
|
for information.
|
|
|
|
|
|
|
|
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
|
|
|
|
STATUS: alpha version
|
|
|
|
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
|
|
|
|
REFERENCES: based on "menu reader" format of Michael Selig
|
|
|
|
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
|
|
|
|
HISTORY: 01/29/2000 initial release
|
|
|
|
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
|
|
|
|
AUTHOR(S): Bipin Sehgal <bsehgal@uiuc.edu>
|
|
|
|
Jeff Scott <jscott@mail.com>
|
|
|
|
Michael Selig <m-selig@uiuc.edu>
|
|
|
|
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
|
|
|
|
VARIABLES:
|
|
|
|
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
|
|
|
|
INPUTS: -error code
|
|
|
|
-input line
|
|
|
|
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
|
|
|
|
OUTPUTS: -warning/error message to screen
|
|
|
|
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
|
|
|
|
CALLED BY: uiuc_menu.cpp
|
|
|
|
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
|
|
|
|
CALLS TO: none
|
|
|
|
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
|
|
|
|
COPYRIGHT: (C) 2000 by Michael Selig
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
|
|
|
USA or view http://www.gnu.org/copyleft/gpl.html.
|
|
|
|
|
|
|
|
**********************************************************************/
|
2000-12-13 23:02:02 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2000-03-22 22:01:33 +00:00
|
|
|
#include "uiuc_warnings_errors.h"
|
|
|
|
|
2000-12-13 23:02:02 +00:00
|
|
|
FG_USING_STD (cerr);
|
|
|
|
FG_USING_STD (endl);
|
2001-01-11 04:54:33 +00:00
|
|
|
|
|
|
|
#ifndef _MSC_VER
|
2000-12-13 23:02:02 +00:00
|
|
|
FG_USING_STD (exit);
|
2001-01-11 04:54:33 +00:00
|
|
|
#endif
|
2000-12-13 23:02:02 +00:00
|
|
|
|
2000-03-22 22:01:33 +00:00
|
|
|
void uiuc_warnings_errors(int errorCode, string line)
|
|
|
|
{
|
|
|
|
switch (errorCode)
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
cerr << "UIUC ERROR: The value of the coefficient in \"" << line << "\" should be of type float" << endl;
|
|
|
|
exit(-1);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
cerr << "UIUC ERROR: Unknown identifier in \"" << line << "\"" << endl;
|
|
|
|
exit(-1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// end uiuc_warnings_errors.cpp
|