Changeset f058ef for molecuilder/src/unittests/atomsCalculationTest.cpp
- Timestamp:
- Mar 4, 2010, 10:33:44 AM (15 years ago)
- Children:
- 025ca2, db6b872
- Parents:
- 3746aeb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/unittests/atomsCalculationTest.cpp
r3746aeb rf058ef 30 30 class AtomStub : public atom { 31 31 public: 32 AtomStub( int _id) :32 AtomStub(atomId_t _id) : 33 33 atom(), 34 34 id(_id), … … 36 36 {} 37 37 38 virtual int getId(){38 virtual atomId_t getId(){ 39 39 return id; 40 40 } … … 46 46 bool manipulated; 47 47 private: 48 int id;48 atomId_t id; 49 49 }; 50 50
Note:
See TracChangeset
for help on using the changeset viewer.