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

操作系统开发

开发平台:

Visual C++

  1. //GraphDataColor.cpp - Version 3.0 (Brian Convery, May, 2001)
  2. // GraphDataColor.cpp : implementation file
  3. //
  4. #include "stdafx.h"
  5. #include "Graph.h"
  6. #include "GraphDataColor.h"
  7. #include "..OSDemo.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CGraphDataColor
  15. CGraphDataColor::CGraphDataColor(int group, COLORREF color)
  16. {
  17. dataGroup = group;
  18. groupColor = color;
  19. }
  20. CGraphDataColor::~CGraphDataColor()
  21. {
  22. }
  23. BEGIN_MESSAGE_MAP(CGraphDataColor, CStatic)
  24. //{{AFX_MSG_MAP(CGraphDataColor)
  25. // NOTE - the ClassWizard will add and remove mapping macros here.
  26. //}}AFX_MSG_MAP
  27. END_MESSAGE_MAP()
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CGraphDataColor message handlers
  30. COLORREF CGraphDataColor::GetColor()
  31. {
  32. return groupColor;
  33. }