LabelItem.h 644 B

123456789101112131415161718192021222324
  1. // LabelItem.h: interface for the CLabelItem class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_LABELITEM_H__AD63D692_F1DC_11D4_9414_00C04F68EB57__INCLUDED_)
  5. #define AFX_LABELITEM_H__AD63D692_F1DC_11D4_9414_00C04F68EB57__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CLabelItem : public CObject
  10. {
  11. public:
  12. DWORD m_Addr;
  13. CString m_strText;
  14. CLabelItem();
  15. CLabelItem(const CLabelItem& ci);
  16. const CLabelItem& operator=(const CLabelItem& stringSrc);
  17. virtual ~CLabelItem();
  18. };
  19. #endif // !defined(AFX_LABELITEM_H__AD63D692_F1DC_11D4_9414_00C04F68EB57__INCLUDED_)