![]() |
ENSDF++ 1.1
An easy, fast and simple way to run querys towards the ENSDF database, written in C++.
|
00001 00013 #include "Record.h" 00014 #include "ChildAddable.h" 00015 #include "Child.h" 00016 00017 #ifndef STRING 00018 #define STRING //!<Inclusion guard 00019 #include <string> 00020 #endif 00021 00022 #ifndef LIST 00023 #define LIST //!<Inclusion guard 00024 #include <list> 00025 #endif 00026 00027 using namespace std; 00028 00029 #ifndef QVALUE_RECORD 00030 #define QVALUE_RECORD //!<Inclusion guard. 00031 00037 class QValueRecord : public Record, public ChildAddable<Child<QValueRecord> > 00038 { 00039 public: 00040 QValueRecord(list<string> cardArg 00041 ); 00042 00043 bool operator== (const QValueRecord &other 00044 ) const; 00045 00046 double getQValue() const; 00047 00048 protected: 00049 double QValue; 00050 private: 00051 void processCard(); 00052 }; 00053 00054 #endif