Changeset 6b937bd for molecuilder/src/tesselation.hpp
- Timestamp:
- Oct 19, 2009, 1:09:29 PM (16 years ago)
- Children:
- 3b0ba2
- Parents:
- 99bed3
- File:
-
- 1 edited
-
molecuilder/src/tesselation.hpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/tesselation.hpp
r99bed3 r6b937bd 25 25 26 26 #include "vector.hpp" 27 #include "helpers.hpp" 27 28 28 29 /****************************************** forward declarations *****************************/ … … 144 145 // =========================================================== class TESSELPOINT =========================================== 145 146 147 class ParticleInfo { 148 public: 149 int nr; // index to easierly identify 150 char *Name; // some name to reference to on output 151 152 ParticleInfo(); 153 ~ParticleInfo(); 154 155 ostream & operator << (ostream &ost); 156 157 private: 158 }; 159 160 ostream & operator << (ostream &ost, const ParticleInfo &a); 161 146 162 /** Is a single point of the set of Vectors, also a super-class to be inherited and and its functions to be implemented. 147 163 */ 148 class TesselPoint {164 class TesselPoint : virtual public ParticleInfo { 149 165 public: 150 166 TesselPoint(); … … 152 168 153 169 Vector *node; // pointer to position of the dot in space 154 int nr; // index to easierly identify155 char *Name; // some name to reference to on output156 170 157 171 virtual ostream & operator << (ostream &ost);
Note:
See TracChangeset
for help on using the changeset viewer.
