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