Changes in src/atom_particleinfo.hpp [46d958:68f03d]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/atom_particleinfo.hpp
r46d958 r68f03d 28 28 public: 29 29 int nr; // index to easierly identify 30 char *Name; // some name to reference to on output31 30 32 31 ParticleInfo(); … … 34 33 ~ParticleInfo(); 35 34 35 const std::string& getName() const; 36 void setName(const std::string&); 37 36 38 ostream & operator << (ostream &ost) const; 37 39 38 40 private: 41 std::string name; // some name to reference to on output 39 42 }; 40 43
Note:
See TracChangeset
for help on using the changeset viewer.