/**************************************************************************** PROJECT: FlowerSoft C++ library FILE : error.h --*/ #ifndef __ERROR_H #define __ERROR_H #define system_error( s ) error( s, __FILE__, __LINE__ ) #define system_warning( s ) warning( s, __FILE__, __LINE__ ) extern void error( const char* s, const char* file, const int line ); extern void warning( const char* s, const char* file, const int line ); #endif // __ERROR_H //