![]() |
ENSDF++ 1.1
An easy, fast and simple way to run querys towards the ENSDF database, written in C++.
|
00001 00014 using namespace std; 00015 00016 #include "Record.h" 00017 00018 #ifndef STRING 00019 #define STRING //!<Inclusion guard 00020 #include <string> 00021 #endif 00022 00023 #ifndef LIST 00024 #define LIST //!<Inclusion guard 00025 #include <list> 00026 #endif 00027 00028 #ifndef COMMENT_RECORD 00029 #define COMMENT_RECORD //!<Inclusion guard. 00030 00037 class CommentRecord : public Record 00038 { 00039 public: 00040 CommentRecord(list<string> cardArg 00041 ); 00042 00043 }; 00044 00045 #endif