Changes in src/atom_atominfo.cpp [f16a4b:ead4e6]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/atom_atominfo.cpp
rf16a4b read4e6 20 20 }; 21 21 22 element *AtomInfo::getType(){22 const element *AtomInfo::getType(){ 23 23 return type; 24 24 } 25 25 26 void AtomInfo::setType( element* _type) {26 void AtomInfo::setType(const element* _type) { 27 27 type = _type; 28 28 } 29 29 30 30 void AtomInfo::setType(int Z) { 31 element *elem = World::get()->getPeriode()->FindElement(Z);31 const element *elem = World::getInstance().getPeriode()->FindElement(Z); 32 32 setType(elem); 33 33 }
Note:
See TracChangeset
for help on using the changeset viewer.