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.
43 lines
910 B
43 lines
910 B
//
|
|
// enumdim.h
|
|
//
|
|
|
|
#ifndef ENUMDIM_H
|
|
#define ENUMDIM_H
|
|
|
|
#include "sunka.h"
|
|
#include "tim.h"
|
|
|
|
class CThreadInputMgr;
|
|
|
|
class CEnumDocumentInputMgrs : public IEnumTfDocumentMgrs,
|
|
public CEnumUnknown,
|
|
public CComObjectRootImmx
|
|
{
|
|
public:
|
|
CEnumDocumentInputMgrs()
|
|
{
|
|
Dbg_MemSetThisNameID(TEXT("CEnumDocumentInputMgrs"));
|
|
}
|
|
|
|
BEGIN_COM_MAP_IMMX(CEnumDocumentInputMgrs)
|
|
COM_INTERFACE_ENTRY(IEnumTfDocumentMgrs)
|
|
END_COM_MAP_IMMX()
|
|
|
|
IMMX_OBJECT_IUNKNOWN_FOR_ATL()
|
|
|
|
DECLARE_SUNKA_ENUM(IEnumTfDocumentMgrs, CEnumDocumentInputMgrs, ITfDocumentMgr)
|
|
|
|
BOOL _Init(CThreadInputMgr *tim)
|
|
{
|
|
_iCur = 0;
|
|
|
|
return (_prgUnk = SUA_Init(tim->_rgdim.Count(), (IUnknown **)tim->_rgdim.GetPtr(0))) != NULL;
|
|
}
|
|
|
|
private:
|
|
DBG_ID_DECLARE;
|
|
};
|
|
|
|
|
|
#endif // ENUMDIM_H
|