| 123456789101112131415161718192021222324252627282930313233343536373839 |
- // LabelItem.cpp: implementation of the CLabelItem class.
- //
- //////////////////////////////////////////////////////////////////////
- #include "stdafx.h"
- #include "test_list_control.h"
- #include "LabelItem.h"
- #ifdef _DEBUG
- #undef THIS_FILE
- static char THIS_FILE[]=__FILE__;
- #define new DEBUG_NEW
- #endif
- //////////////////////////////////////////////////////////////////////
- // Construction/Destruction
- //////////////////////////////////////////////////////////////////////
- CLabelItem::CLabelItem()
- {
- }
- CLabelItem::CLabelItem(const CLabelItem& ci)
- {
- m_Addr = ci.m_Addr;
- m_strText = ci.m_strText;
- }
- CLabelItem::~CLabelItem()
- {
- }
- const CLabelItem& CLabelItem::operator=(const CLabelItem &ci)
- {
- m_Addr = ci.m_Addr;
- m_strText = ci.m_strText;
- return *this;
- }
|