You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
727 B
37 lines
727 B
//
|
|
// prop.h
|
|
//
|
|
|
|
#ifndef PROP_H
|
|
#define PROP_H
|
|
|
|
#include "sunka.h"
|
|
|
|
class CInputContext;
|
|
class CProperty;
|
|
|
|
class CEnumProperties : public IEnumTfProperties,
|
|
public CEnumUnknown,
|
|
public CComObjectRootImmx
|
|
{
|
|
public:
|
|
CEnumProperties()
|
|
{
|
|
Dbg_MemSetThisNameIDCounter(TEXT("CEnumProperties"), PERF_ENUMPROP_COUNTER);
|
|
}
|
|
|
|
BOOL _Init(CInputContext *pic);
|
|
|
|
BEGIN_COM_MAP_IMMX(CEnumProperties)
|
|
COM_INTERFACE_ENTRY(IEnumTfProperties)
|
|
END_COM_MAP_IMMX()
|
|
|
|
IMMX_OBJECT_IUNKNOWN_FOR_ATL()
|
|
|
|
DECLARE_SUNKA_ENUM(IEnumTfProperties, CEnumProperties, ITfProperty)
|
|
|
|
private:
|
|
DBG_ID_DECLARE;
|
|
};
|
|
|
|
#endif // PROP_H
|