diff options
Diffstat (limited to 'ceee/testing/utils/mock_com.h')
-rw-r--r-- | ceee/testing/utils/mock_com.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/ceee/testing/utils/mock_com.h b/ceee/testing/utils/mock_com.h index 36f2d65..23cb233 100644 --- a/ceee/testing/utils/mock_com.h +++ b/ceee/testing/utils/mock_com.h @@ -22,6 +22,13 @@ namespace testing { +class IOleClientSiteMockImpl : public IOleClientSite { + // The methods in this class are code generated using this command line: + // [ ceee\testing\utils\com_mock.py IOleClientSite \ + // "%WindowsSdkDir%\Include\OleIdl.h" ] +#include "ceee/testing/utils/mock_ioleclientsite.gen" +}; + class IOleObjecMockImpl: public IOleObject { public: // The methods in this class are code generated using this command line: @@ -139,7 +146,7 @@ class ITravelLogStgMockImpl : public ITravelLogStg { class MockIServiceProvider : public CComObjectRootEx<CComSingleThreadModel>, public testing::StrictMock<IServiceProviderMockImpl> { - DECLARE_NOT_AGGREGATABLE(MockIServiceProvider ) + DECLARE_NOT_AGGREGATABLE(MockIServiceProvider) BEGIN_COM_MAP(MockIServiceProvider) COM_INTERFACE_ENTRY(IServiceProvider) END_COM_MAP() |