![]() |
ENSDF++ 1.1
An easy, fast and simple way to run querys towards the ENSDF database, written in C++.
|
00001 00015 using namespace std; 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 HISTORY_RECORD 00029 #define HISTORY_RECORD //!<Inclusion guard 00030 00037 class HistoryRecord : public Record 00038 { 00039 public: 00040 HistoryRecord(list<string> cardArg 00041 ); 00042 }; 00043 00044 #endif