Ignore:
Timestamp:
Oct 19, 2009, 1:09:29 PM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
3b0ba2
Parents:
99bed3
Message:

Huge Refactoring: class atom split up into several inherited classes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/tesselation.cpp

    r99bed3 r6b937bd  
    1616
    1717class molecule;
     18
     19// =========================================== ParticleInfo ====================================
     20
     21/** Constructor of ParticleInfo.
     22 */
     23ParticleInfo::ParticleInfo() : nr(-1), Name(NULL) {};
     24
     25/** Destructor of ParticleInfo.
     26 */
     27ParticleInfo::~ParticleInfo()
     28{
     29  Free(&Name);
     30};
    1831
    1932// ======================================== Points on Boundary =================================
Note: See TracChangeset for help on using the changeset viewer.