Border.cpp
Upload User: azhong891
Upload Date: 2013-06-04
Package Size: 197k
Code Size: 1k
Category:

GIS program

Development Platform:

Visual C++

  1. // Border.cpp: implementation of the CBorder class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "Delaunay.h"
  6. #include "Border.h"
  7. #ifdef _DEBUG
  8. #undef THIS_FILE
  9. static char THIS_FILE[]=__FILE__;
  10. #define new DEBUG_NEW
  11. #endif
  12. //////////////////////////////////////////////////////////////////////
  13. // Construction/Destruction
  14. //////////////////////////////////////////////////////////////////////
  15. CBorder::CBorder()
  16. {
  17. }
  18. CBorder::~CBorder()
  19. {
  20. }
  21. CBorder::CBorder(int p1, int p2)
  22. {
  23. m_p1=p1;
  24. m_p2=p2;
  25. }