23 lines
759 B
C++
23 lines
759 B
C++
// StateProcessor.h: interface for the CStateProcessor class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_STATEPROCESSOR_H__B663B302_3A0A_430E_9070_1A91D247DF4B__INCLUDED_)
|
|
#define AFX_STATEPROCESSOR_H__B663B302_3A0A_430E_9070_1A91D247DF4B__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
class CStateProcessor
|
|
{
|
|
public:
|
|
UINT ChangeToItemState(UINT uImageState); //图像状态改变为对象状态(uImageState---in:图像状态)
|
|
UINT ChangeToImageState(UINT uItemState); //对象状态改变为图像状态(uItemState---in:对象状态)
|
|
CStateProcessor();
|
|
virtual ~CStateProcessor();
|
|
|
|
};
|
|
|
|
#endif // !defined(AFX_STATEPROCESSOR_H__B663B302_3A0A_430E_9070_1A91D247DF4B__INCLUDED_)
|