SkinResource.h 620 B

12345678910111213141516171819202122232425
  1. // SkinResource.h: interface for the CSkinResource class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_SKINRESOURCE_H__6546AFFB_72B3_42A4_B312_499C6685D706__INCLUDED_)
  5. #define AFX_SKINRESOURCE_H__6546AFFB_72B3_42A4_B312_499C6685D706__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "SkinButton.h"
  10. class CSkinResource
  11. {
  12. CSkinButtonResource m_btnres;
  13. public:
  14. CSkinResource();
  15. BOOL LoadSkin( const char *skinfile );
  16. virtual ~CSkinResource();
  17. };
  18. #endif // !defined(AFX_SKINRESOURCE_H__6546AFFB_72B3_42A4_B312_499C6685D706__INCLUDED_)