![]() |
ENSDF++ 1.1
An easy, fast and simple way to run querys towards the ENSDF database, written in C++.
|
00001 #include "InterestingDecay.h" 00002 00003 InterestingDecay::InterestingDecay(Nukleid toSet) 00004 { 00005 myNukleid = toSet; 00006 } 00007 00008 Nukleid InterestingDecay::getNukleid() const 00009 { 00010 return myNukleid; 00011 } 00012 00013 bool InterestingDecay::operator==(const InterestingDecay &other) const 00014 { 00015 return myNukleid==other.myNukleid; 00016 } 00017 00018 bool InterestingDecay::operator<(const InterestingDecay &other) const 00019 { 00020 return myNukleid<other.myNukleid; 00021 } 00022 00023 string InterestingDecay::toString() const 00024 { 00025 return myNukleid.toString(); 00026 }