Changes in src/bond.cpp [68f03d:112b09]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/bond.cpp
r68f03d r112b09 4 4 * 5 5 */ 6 7 #include "Helpers/MemDebug.hpp" 6 8 7 9 #include "atom.hpp" … … 15 17 /** Empty Constructor for class bond. 16 18 */ 17 bond::bond() : leftatom(NULL), rightatom(NULL), previous(NULL), next(NULL), HydrogenBond(0), BondDegree(0), nr(-1), Cyclic(false), Type(Undetermined), Used(white) 19 bond::bond() 20 : leftatom(NULL), rightatom(NULL), previous(NULL), next(NULL), HydrogenBond(0), 21 BondDegree(0), nr(-1), Cyclic(false), Type(Undetermined), Used(white) 18 22 { 19 23 }; … … 25 29 * \param number increasing index 26 30 */ 27 bond::bond(atom *left, atom *right, const int degree, const int number) : leftatom(left), rightatom(right), previous(NULL), next(NULL), HydrogenBond(0), BondDegree(degree), nr(number), Cyclic(false), Type(Undetermined), Used(white) 31 bond::bond(atom *left, atom *right, const int degree, const int number) 32 : leftatom(left), rightatom(right), previous(NULL), next(NULL), HydrogenBond(0), 33 BondDegree(degree), nr(number), Cyclic(false), Type(Undetermined), Used(white) 28 34 { 29 35 if ((left != NULL) && (right != NULL)) {
Note:
See TracChangeset
for help on using the changeset viewer.