Ignore:
Timestamp:
Oct 27, 2009, 11:45:23 AM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
55a71b
Parents:
94d0ad
git-author:
Frederik Heber <heber@…> (10/27/09 09:28:07)
git-committer:
Frederik Heber <heber@…> (10/27/09 11:45:23)
Message:

Begun with ticket #4 (shorten constructors) on class atom and class bond.

  • note that in bond we removed two constructor definitions which were unnecessary if standard values were given in the definition not in the declaration.

Signed-off-by: Frederik Heber <heber@…>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/bond.cpp

    r94d0ad r8b6ee4  
    1515/** Empty Constructor for class bond.
    1616 */
    17 bond::bond()
     17bond::bond() : leftatom(NULL), rightatom(NULL), previous(NULL), next(NULL), HydrogenBond(0), BondDegree(0), nr(-1), Cyclic(false), Type(Undetermined), Used(white)
    1818{
    19   leftatom = NULL;
    20   rightatom = NULL;
    21   previous = NULL;
    22   next = NULL;
    23   nr = -1;
    24   HydrogenBond = 0;
    25   BondDegree = 0;
    26   Used = white;
    27   Cyclic = false;
    28   Type = Undetermined;
    2919};
    3020
     
    3525 * \param number increasing index
    3626 */
    37 bond::bond(atom *left, atom *right, int degree=1, int number=0)
     27bond::bond(atom *left, atom *right, int degree, int number) : leftatom(left), rightatom(right), previous(NULL), next(NULL), HydrogenBond(0), BondDegree(degree), nr(number), Cyclic(false), Type(Undetermined), Used(white)
    3828{
    39   leftatom = left;
    40   rightatom = right;
    41   previous = NULL;
    42   next = NULL;
    43   HydrogenBond = 0;
    4429  if ((left != NULL) && (right != NULL)) {
    4530    if ((left->type != NULL) && (left->type->Z == 1))
     
    4833      HydrogenBond++;
    4934  }
    50   BondDegree = degree;
    51   nr = number;
    52   Used = white;
    53   Cyclic = false;
    54 };
    55 
    56 bond::bond(atom *left, atom *right)
    57 {
    58   leftatom = left;
    59   rightatom = right;
    60   previous = NULL;
    61   next = NULL;
    62   HydrogenBond = 0;
    63   if ((left != NULL) && (right != NULL)) {
    64     if ((left->type != NULL) && (left->type->Z == 1))
    65       HydrogenBond++;
    66     if ((right->type != NULL) && (right->type->Z == 1))
    67       HydrogenBond++;
    68   }
    69   BondDegree = 1;
    70   nr = 0;
    71   Used = white;
    72   Cyclic = false;
    7335};
    7436
Note: See TracChangeset for help on using the changeset viewer.