![]() |
ENSDF++ 1.1
An easy, fast and simple way to run querys towards the ENSDF database, written in C++.
|
00001 00009 using namespace std; 00010 00011 #ifndef EXCEPTION 00012 #define EXCEPTION //!<Inclusion guard. 00013 #include <exception> 00014 #endif 00015 00016 #ifndef STRING 00017 #define STRING //!<Inclusion guard 00018 #include <string> 00019 #endif 00020 00021 #ifndef DATAFILEEXCEPTION_H 00022 #define DATAFILEEXCEPTION_H //!<Inclusion guard. 00023 00029 class DataFileException : public exception 00030 { 00031 00032 private: 00033 string msg; 00034 00035 public: 00036 DataFileException(string m="exception!" 00037 ); 00038 00039 ~DataFileException() throw(); 00040 const char* what() const throw(); 00041 }; 00042 #endif