/* * BoundaryMaps.hpp * * Created on: Jul 29, 2010 * Author: heber */ #ifndef BOUNDARYMAPS_HPP_ #define BOUNDARYMAPS_HPP_ class BoundaryPointSet; class BoundaryLineSet; class BoundaryTriangleSet; class BoundaryPolygonSet; class CandidateForTesselation; class TesselPoint; #include #include #include typedef std::map IndexToIndex; typedef std::map < int, class BoundaryPointSet * > PointMap; typedef std::set < class BoundaryPointSet * > PointSet; typedef std::list < class BoundaryPointSet * > PointList; typedef std::pair < int, class BoundaryPointSet * > PointPair; typedef std::pair < PointMap::iterator, bool > PointTestPair; typedef std::list CandidateList; typedef std::map CandidateMap; typedef std::multimap < int, class BoundaryLineSet * > LineMap; typedef std::set < class BoundaryLineSet * > LineSet; typedef std::list < class BoundaryLineSet * > LineList; typedef std::pair < int, class BoundaryLineSet * > LinePair; typedef std::pair < LineMap::iterator, bool > LineTestPair; typedef std::map < int, class BoundaryTriangleSet * > TriangleMap; typedef std::set < class BoundaryTriangleSet * > TriangleSet; typedef std::list < class BoundaryTriangleSet * > TriangleList; typedef std::pair < int, class BoundaryTriangleSet * > TrianglePair; typedef std::pair < TriangleMap::iterator, bool > TriangleTestPair; typedef std::map < int, class BoundaryPolygonSet * > PolygonMap; typedef std::set < class BoundaryPolygonSet * > PolygonSet; typedef std::list < class BoundaryPolygonSet * > PolygonList; typedef std::multimap DistanceToPointMap; typedef std::pair DistanceToPointPair; typedef std::multimap > DistanceMultiMap; typedef std::pair > DistanceMultiMapPair; typedef std::list TesselPointList; typedef std::set TesselPointSet; typedef std::list *> ListOfTesselPointList; enum centers {Opt, OtherOpt}; #endif /* BOUNDARYMAPS_HPP_ */