00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 #ifndef __CAMMVAEXIT__
00015 #define __CAMMVAEXIT__
00016 
00017 #include "mvaimpexp.h"
00018 
00019 void __IMPEXP__ CAMmvaExit();
00020 void __IMPEXP__ CAMmvaExit(char* ErrorMessage);
00021 
00022 #ifdef __BCPLUSPLUS__
00023 
00024 class __IMPEXP__ CAMmvaException
00025 {
00026     public :
00027 
00028     CAMmvaException();
00029     CAMmvaException(const CAMmvaException& C);
00030     CAMmvaException(char* msg);
00031     ~CAMmvaException();
00032     
00033     char* getMessage() const {return errorMessage;};
00034 
00035     private :
00036 
00037     char* errorMessage;
00038 };
00039 #endif
00040 #endif
00041 
00042