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

操作系统开发

开发平台:

Visual C++

  1. // GraphLegendSet.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "GraphLegendSet.h"
  5. #ifdef _DEBUG
  6. #define new DEBUG_NEW
  7. #undef THIS_FILE
  8. static char THIS_FILE[] = __FILE__;
  9. #endif
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CGraphLegendSet
  12. CGraphLegendSet::CGraphLegendSet()
  13. {
  14. legendId = 0;
  15. legendLabel = "";
  16. }
  17. CGraphLegendSet::~CGraphLegendSet()
  18. {
  19. }
  20. BEGIN_MESSAGE_MAP(CGraphLegendSet, CStatic)
  21. //{{AFX_MSG_MAP(CGraphLegendSet)
  22. // NOTE - the ClassWizard will add and remove mapping macros here.
  23. //}}AFX_MSG_MAP
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CGraphLegendSet message handlers
  27. void CGraphLegendSet::SetLegendLabel(int id, CString legendText)
  28. {
  29. legendId = id;
  30. legendLabel = legendText;
  31. }
  32. CString CGraphLegendSet::GetLegendLabel()
  33. {
  34. return legendLabel;
  35. }