home *** CD-ROM | disk | FTP | other *** search
- // $$COM_Class_Name$$.cpp : Implementation of C$$COM_Class_Name$$
- #include "stdafx.h"
- #include "$$root$$.h"
- #include "$$COM_Class_Name$$.h"
- #include "imsigx_i.c"
-
- /////////////////////////////////////////////////////////////////////////////
- // C$$COM_Class_Name$$
-
- STDMETHODIMP C$$COM_Class_Name$$::InterfaceSupportsErrorInfo(REFIID riid)
- {
- static const IID* arr[] =
- {
- &IID_I$$COM_Class_Name$$
- };
- for (int i=0; i < sizeof(arr) / sizeof(arr[0]); i++)
- {
- if (InlineIsEqualGUID(*arr[i],riid))
- return S_OK;
- }
- return S_FALSE;
- }
-
- C$$COM_Class_Name$$::C$$COM_Class_Name$$()
- {
- }
-
- $$IF(RegenCreating)
- $$INCLUDE(REGEN.CPP)
- $$ENDIF
- $$IF(ToolCreating)
- $$INCLUDE(TOOL.CPP)
- $$ENDIF
- $$IF(FilterCreating)
- $$INCLUDE(FILTER.CPP)
- $$ENDIF
- $$IF(TieCreating)
- $$INCLUDE(TIE.CPP)
- $$ENDIF
- $$INCLUDE(ALLEVENTS.CPP)
-
-
-
-