svn path=/trunk/kdeedu/kalzium/src/element.cpp; revision=373964
m_name=config.readEntry( "Name", "Unknown" );
m_symbol=config.readEntry( "Symbol", "Unknown" );
m_weight=config.readDoubleNumEntry( "Weight",0.0 );
+ m_isotopes=config.readEntry( "Isotopes", "0" );
m_oxstage=config.readEntry( "Ox","0" );
m_acidbeh=config.readEntry( "acidbeh","0" );
QString acidicbeh() const {
return m_acidbeh;
}
+
+ /**
+ * @return the isotopes of the element
+ */
+ QString Isotopes() const {
+ return m_isotopes;
+ }
/**
* @return the oxydationstages of the element
m_block,
m_group,
m_acidbeh,
- m_orbits;
+ m_orbits,
+ m_isotopes;
};