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