00001 #ifndef ADDRESOURCESETTINGS_H
00002 #define ADDRESOURCESETTINGS_H
00003
00004 #pragma once
00005 #include <PropertyLib\IPropertyHost.h>
00006
00007 class CAddResourceSettings : public IPropertyHost
00008 {
00009 public:
00010 CAddResourceSettings();
00011 virtual ~CAddResourceSettings();
00012
00013 virtual bool PropertyChanging( const void* pvProperty , void* pvNewValue );
00014 virtual void GetProperties( EPropList& PropList );
00015
00016 bool m_bUpdateRequired;
00017
00018 protected:
00019 CString m_strResourceName;
00020 CString m_strResourceRawFilename;
00021 CString m_strResourceXMLFilename;
00022 CString m_strResourcesDatabaseFilename;
00023 };
00024
00025 #endif