GraphDataSet.h
上传用户:tianjwyx
上传日期:2007-01-13
资源大小:813k
文件大小:1k
源码类别:

操作系统开发

开发平台:

Visual C++

  1. //GraphDataSet.h - Version 3.0 (Brian Convery, May, 2001)
  2. #if !defined(AFX_GRAPHDATASET_H__3CBDC4C1_494F_11D5_AD40_006008198224__INCLUDED_)
  3. #define AFX_GRAPHDATASET_H__3CBDC4C1_494F_11D5_AD40_006008198224__INCLUDED_
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // GraphDataSet.h : header file
  8. //
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CGraphDataSet window
  11. class CGraphDataSet : public CStatic
  12. {
  13. // Construction
  14. public:
  15. CGraphDataSet();
  16. // Attributes
  17. public:
  18. private :
  19. int xPosition;
  20. int yValue;
  21. // Operations
  22. public:
  23. void SetXPosition(int x);
  24. void SetYValue(int y);
  25. int GetXData();
  26. int GetYData();
  27. // Overrides
  28. // ClassWizard generated virtual function overrides
  29. //{{AFX_VIRTUAL(CGraphDataSet)
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. public:
  33. virtual ~CGraphDataSet();
  34. // Generated message map functions
  35. protected:
  36. //{{AFX_MSG(CGraphDataSet)
  37. // NOTE - the ClassWizard will add and remove member functions here.
  38. //}}AFX_MSG
  39. DECLARE_MESSAGE_MAP()
  40. };
  41. /////////////////////////////////////////////////////////////////////////////
  42. //{{AFX_INSERT_LOCATION}}
  43. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  44. #endif // !defined(AFX_GRAPHDATASET_H__3CBDC4C1_494F_11D5_AD40_006008198224__INCLUDED_)