Changeset 2e6496


Ignore:
Timestamp:
Feb 25, 2010, 11:02:53 AM (15 years ago)
Author:
Tillmann Crueger <crueger@…>
Children:
1614a17, 8d9d38
Parents:
a1a532
Message:

Removed unittest files from the documentation

Location:
molecuilder
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/doc/Doxyfile

    ra1a532 r2e6496  
    114114EXCLUDE                =
    115115EXCLUDE_SYMLINKS       = NO
    116 EXCLUDE_PATTERNS       =
     116EXCLUDE_PATTERNS       = */unittests/* \
     117                                                 */test/*
    117118EXAMPLE_PATH           =
    118119EXAMPLE_PATTERNS       = *
  • molecuilder/src/World.cpp

    ra1a532 r2e6496  
    5050  molecules_deprecated->insert(mol);
    5151  assert(!molecules.count(currMoleculeId));
     52  // store the molecule by ID
    5253  molecules[currMoleculeId++] = mol;
    5354  mol->signOn(this);
     
    6263  res->setId(currAtomId++);
    6364  res->setWorld(this);
     65  // store the atom by ID
    6466  atoms[res->getId()] = res;
    6567  return res;
     
    128130boost::mutex World::worldLock;
    129131
    130 
    131 
    132132World::World() :
    133133    currAtomId(0),
Note: See TracChangeset for help on using the changeset viewer.