![]() |
ENSDF++ 1.1
An easy, fast and simple way to run querys towards the ENSDF database, written in C++.
|
00001 #include "QValueRecord.h" 00002 00003 using namespace std; 00004 00005 QValueRecord::QValueRecord(list<string> cardArg) 00006 :Record(cardArg) 00007 { 00008 processCard(); 00009 } 00010 00011 void QValueRecord::processCard() 00012 { 00013 QValue = cardToDouble(10, 19); 00014 } 00015 00016 bool QValueRecord::operator== (const QValueRecord &other) const 00017 { 00018 return ((getNukleid()==other.getNukleid())&&(QValue==other.QValue)); 00019 } 00020 00021 double QValueRecord::getQValue() const 00022 { 00023 return QValue; 00024 }