![]() |
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 #include "LevelRecord.h" 00018 #include "Nukleid.h" 00019 #include "NormalizationRecord.h" 00020 #include "ParentRecord.h" 00021 #include "QValueRecord.h" 00022 #include "ParentRecordChildrenWrapper.h" 00023 #include "QValueRecordChildrenWrapper.h" 00024 #include "LevelRecordChildrenWrapper.h" 00025 #include "NormalizationRecordChildrenWrapper.h" 00026 00027 #ifndef STRING 00028 #define STRING //!<Inclusion guard 00029 #include <string> 00030 #endif 00031 00032 #ifndef LIST 00033 #define LIST //!<Inclusion guard 00034 #include <list> 00035 #endif 00036 00037 #ifndef ALPHA_RECORD 00038 #define ALPHA_RECORD //!<Inclusion guard. 00039 00046 class AlphaRecord : public Record, public ParentRecordChildrenWrapper, public QValueRecordChildrenWrapper, public LevelRecordChildrenWrapper, public NormalizationRecordChildrenWrapper 00047 { 00048 public: 00049 AlphaRecord( 00050 list<string> cardArg, 00051 NormalizationRecord * myNormalizationRecord, 00052 LevelRecord* level, 00053 ParentRecord* myParent, 00054 QValueRecord* qValRecord 00055 ); 00056 }; 00057 00058 #endif