// Card.h: interface for the CCard class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_CARD_H__0007B886_9466_11D7_8B8F_00E0189B8E0A__INCLUDED_) #define AFX_CARD_H__0007B886_9466_11D7_8B8F_00E0189B8E0A__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 class CCard { public: CCard(); CCard::CCard(int location1, int status1); CCard::set(int location1, int status1); virtual ~CCard(); int location; // the number of the shelfe int status; // 0-1 }; #endif // !defined(AFX_CARD_H__0007B886_9466_11D7_8B8F_00E0189B8E0A__INCLUDED_)