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