made destructor public

This commit is contained in:
zzzzrrr 2010-02-10 07:29:05 -05:00
parent cd95b14d0a
commit a8963b0bb0

View File

@ -44,6 +44,8 @@ public:
/// Constructor /// Constructor
CDT(std::vector<Point*> polyline); CDT(std::vector<Point*> polyline);
/// Destructor
~CDT();
/// Add a hole /// Add a hole
void AddHole(std::vector<Point*> polyline); void AddHole(std::vector<Point*> polyline);
/// Add a single point /// Add a single point
@ -60,8 +62,6 @@ private:
SweepContext* sweep_context_; SweepContext* sweep_context_;
Sweep* sweep_; Sweep* sweep_;
/// Destructor
~CDT();
}; };
} }