Border.cpp
上传用户:azhong891
上传日期:2013-06-04
资源大小:197k
文件大小:1k
源码类别:

GIS编程

开发平台:

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. }