-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathItemInfo.h
30 lines (22 loc) · 858 Bytes
/
ItemInfo.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*******************************************************************************
Copyright (c) 1999-2010 by Text Analysis International, Inc.
All rights reserved.
*******************************************************************************/
// ItemInfo.h: interface for the CItemInfo class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_ITEMINFO_H__0104E656_C0A0_11D1_B974_425F59000000__INCLUDED_)
#define AFX_ITEMINFO_H__0104E656_C0A0_11D1_B974_425F59000000__INCLUDED_
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
class CItemInfo
{
public:
virtual ~CItemInfo() {};
CItemInfo (int iItem) : m_iItem(iItem) {};
int GetItem() {return m_iItem;}
private:
int m_iItem;
};
#endif // !defined(AFX_ITEMINFO_H__0104E656_C0A0_11D1_B974_425F59000000__INCLUDED_)