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

操作系统开发

开发平台:

Visual C++

  1. //GraphDataSet.h - Version 3.0 (Brian Convery, May, 2001)
  2. // GraphDataSet.cpp : implementation file
  3. //
  4. #include "stdafx.h"
  5. #include "GraphDataSet.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CGraphDataSet
  13. CGraphDataSet::CGraphDataSet()
  14. {
  15. xPosition = 0;
  16. yValue = 0;
  17. }
  18. CGraphDataSet::~CGraphDataSet()
  19. {
  20. }
  21. BEGIN_MESSAGE_MAP(CGraphDataSet, CStatic)
  22. //{{AFX_MSG_MAP(CGraphDataSet)
  23. // NOTE - the ClassWizard will add and remove mapping macros here.
  24. //}}AFX_MSG_MAP
  25. END_MESSAGE_MAP()
  26. /////////////////////////////////////////////////////////////////////////////
  27. // CGraphDataSet message handlers
  28. void CGraphDataSet::SetXPosition(int x)
  29. {
  30. xPosition = x;
  31. }
  32. void CGraphDataSet::SetYValue(int y)
  33. {
  34. yValue = y;
  35. }
  36. int CGraphDataSet::GetXData()
  37. {
  38. return xPosition;
  39. }
  40. int CGraphDataSet::GetYData()
  41. {
  42. return yValue;
  43. }