![]() |
ENSDF++ 1.1
An easy, fast and simple way to run querys towards the ENSDF database, written in C++.
|
00001 00010 using namespace std; 00011 00012 #ifndef STRING 00013 #define STRING //!<Inclusion guard 00014 #include <string> 00015 #endif 00016 00017 #ifndef UTILITY 00018 #define UTILITY //!<Inclusion guard 00019 #include <utility> 00020 #endif 00021 00022 #include "Nukleid.h" 00023 00024 00025 #ifndef INTERESTINGDECAY_H 00026 #define INTERESTINGDECAY_H //!<Inclusion guard 00027 00030 class InterestingDecay 00031 { 00032 public: 00033 Nukleid getNukleid() const; 00034 virtual string toString() const; 00035 00036 virtual bool operator==(const InterestingDecay &other 00037 ) const; 00038 00039 virtual bool operator<(const InterestingDecay &other 00040 ) const; 00041 00042 protected: 00043 InterestingDecay( 00044 Nukleid toSet 00045 ); 00046 private: 00047 Nukleid myNukleid; 00048 }; 00049 00050 00051 #endif