![]() |
ENSDF++ 1.1
An easy, fast and simple way to run querys towards the ENSDF database, written in C++.
|
00001 00014 #include "Record.h" 00015 #include "LevelRecord.h" 00016 #include "NormalizationRecord.h" 00017 #include "ParentRecord.h" 00018 #include "QValueRecord.h" 00019 #include "LevelRecordChildrenWrapper.h" 00020 #include "ParentRecordChildrenWrapper.h" 00021 #include "QValueRecordChildrenWrapper.h" 00022 00023 #ifndef STRING 00024 #define STRING //!<Inclusion guard 00025 #include <string> 00026 #endif 00027 00028 #ifndef LIST 00029 #define LIST //!<Inclusion guard 00030 #include <list> 00031 #endif 00032 00033 using namespace std; 00034 00035 #ifndef DELAYED_PARTICLE_RECORD 00036 #define DELAYED_PARTICLE_RECORD //!<Inclusion guard. 00037 00045 class DelayedParticleRecord : public Record, public LevelRecordChildrenWrapper, public ParentRecordChildrenWrapper, public QValueRecordChildrenWrapper 00046 { 00047 public: 00048 DelayedParticleRecord(list<string> cardArg, 00049 NormalizationRecord * myNormalizationRecord, 00050 LevelRecord* level, 00051 ParentRecord * myParentRecord, 00052 QValueRecord* qValRecord 00053 ); 00054 }; 00055 00056 #endif