Ignore:
Timestamp:
Sep 5, 2008, 5:02:18 PM (17 years ago)
Author:
Frederik Heber <heber@…>
Children:
5887ed
Parents:
0f508c
Message:

moved all definitions from boundary.hpp to molecules.hpp, and renamed DistanceNrPair to DistancePair.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/molecules.hpp

    r0f508c rdfc1c7  
    4545#define KeySetTestPair pair<KeySet::iterator, bool>
    4646#define GraphTestPair pair<Graph::iterator, bool>
     47
     48#define DistancePair pair < double, atom* >
     49#define DistanceMap multimap < double, atom* >
     50#define DistanceTestPair pair < DistanceMap::iterator, bool>
     51
     52#define Boundaries map <double, DistancePair >
     53#define BoundariesPair pair<double, DistancePair >
     54#define BoundariesTestPair pair< Boundaries::iterator, bool>
     55
     56#define PointMap map < int, class BoundaryPointSet * >
     57#define PointPair pair < int, class BoundaryPointSet * >
     58#define PointTestPair pair < PointMap::iterator, bool >
     59
     60#define LineMap map < int, class BoundaryLineSet * >
     61#define LinePair pair < int, class BoundaryLineSet * >
     62#define LineTestPair pair < LinePair::iterator, bool >
     63
     64#define TriangleMap map < int, class BoundaryTriangleSet * >
     65#define TrianglePair pair < int, class BoundaryTriangleSet * >
     66#define TriangleTestPair pair < TrianglePair::iterator, bool >
     67
     68#define DistanceMultiMap multimap <double, pair < PointMap::iterator, PointMap::iterator> >
     69#define DistanceMultiMapPair pair <double, pair < PointMap::iterator, PointMap::iterator> >
     70
     71/******************************** Some small functions and/or structures **********************************/
    4772
    4873struct KeyCompare
Note: See TracChangeset for help on using the changeset viewer.