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

GIS编程

开发平台:

Visual C++

  1. // Border.h: interface for the CBorder class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_BORDER_H__0CB1CBA5_22C4_11D4_B502_BB43AB642844__INCLUDED_)
  5. #define AFX_BORDER_H__0CB1CBA5_22C4_11D4_B502_BB43AB642844__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include <math.h>
  10. #include <stdio.h>
  11. #include <stdlib.h>
  12. class CBorder : public CObject  
  13. {
  14. public:
  15. CBorder(int p1,int p2);
  16. int m_p2;//Save the point's mark of the border in m_point 
  17. int m_p1;
  18. CBorder();
  19. virtual ~CBorder();
  20. };
  21. #endif // !defined(AFX_BORDER_H__0CB1CBA5_22C4_11D4_B502_BB43AB642844__INCLUDED_)