![]() |
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 00017 #ifndef NULL //!<Inclusion guard. 00018 #define NULL 0 00019 #endif 00020 00021 #include "Child.h" 00022 #include "LevelRecord.h" 00023 00024 #ifndef LEVELRECORDCHILDRENWRAPPER_H 00025 #define LEVELRECORDCHILDRENWRAPPER_H //!<Inclusion guard. 00026 00032 class LevelRecordChildrenWrapper: public Child<LevelRecord> 00033 { 00034 public: 00035 virtual const LevelRecord * getLevelRecord() const; 00036 LevelRecordChildrenWrapper(LevelRecord * toSet 00037 ); 00038 }; 00039 #endif