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