www.pudn.com > Gesture[20040824].rar > SkinColor.h
// SkinColor.h: interface for the CSkinColor class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_SKINCOLOR_H__52130D52_2964_49C0_A47D_EBC8188FA061__INCLUDED_)
#define AFX_SKINCOLOR_H__52130D52_2964_49C0_A47D_EBC8188FA061__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "image.h"
class CSkinColor
{
private:
bool m_bSkinReady;
CImage *m_SkinImage;
public:
CSkinColor();
virtual ~CSkinColor();
bool GetSkinStatus() { return m_bSkinReady; }
void SetSkinStatus(bool status) { m_bSkinReady = status; }
CImage *GetSkinImage() { return m_SkinImage; }
};
#endif // !defined(AFX_SKINCOLOR_H__52130D52_2964_49C0_A47D_EBC8188FA061__INCLUDED_)