Changeset d3513b for molecuilder/src/bond.cpp
- Timestamp:
- May 2, 2010, 4:47:18 PM (16 years ago)
- Children:
- 0647f4
- Parents:
- 0f7883
- File:
-
- 1 edited
-
molecuilder/src/bond.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/bond.cpp
r0f7883 rd3513b 15 15 /** Empty Constructor for class bond. 16 16 */ 17 bond::bond() : leftatom(NULL), rightatom(NULL), previous(NULL), next(NULL), HydrogenBond(0), BondDegree(0), nr(-1), Cyclic(false), Type(Undetermined), Used(white) 17 bond::bond() 18 : leftatom(NULL), rightatom(NULL), previous(NULL), next(NULL), HydrogenBond(0), 19 BondDegree(0), nr(-1), Cyclic(false), Type(Undetermined), Used(white) 18 20 { 19 21 }; … … 25 27 * \param number increasing index 26 28 */ 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) 29 bond::bond(atom *left, atom *right, const int degree, const int number) 30 : leftatom(left), rightatom(right), previous(NULL), next(NULL), HydrogenBond(0), 31 BondDegree(degree), nr(number), Cyclic(false), Type(Undetermined), Used(white) 28 32 { 29 33 if ((left != NULL) && (right != NULL)) {
Note:
See TracChangeset
for help on using the changeset viewer.
