www.pudn.com > DrawerMenu(ÍêÕû°æ).rar > SubItem.cpp
// SubItem.cpp: implementation of the CSubItem class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "DrawerMenu.h"
#include "SubItem.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CSubItem::CSubItem(int nItemID, int nImageIndex, CString & strText)
{
m_nItemID = nItemID;
m_nImageIndex = nImageIndex;
m_strText = strText;
}
CSubItem::~CSubItem()
{
}