1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
21 #include "wincrap.hxx"
23 #include "comifaces.hxx"
25 /* creates a UnoTypeWrapper and sets the Name property to the value
26 specified by sTypeName.
27 Returns true if the object could be created and initialized.
29 bool createUnoTypeWrapper(BSTR sTypeName
, VARIANT
* pVariant
);
30 bool createUnoTypeWrapper(const OUString
& sTypeName
, VARIANT
* pVar
);
33 public CComObjectRootEx
<CComMultiThreadModel
>,
34 public IUnoTypeWrapper
,
39 virtual ~UnoTypeWrapper();
41 BEGIN_COM_MAP(UnoTypeWrapper
)
42 COM_INTERFACE_ENTRY(IDispatch
)
43 COM_INTERFACE_ENTRY(IUnoTypeWrapper
)
45 #pragma clang diagnostic push
46 #pragma clang diagnostic ignored "-Winconsistent-missing-override"
50 #pragma clang diagnostic pop
53 // IDispatch -------------------------------------------
54 STDMETHOD( GetTypeInfoCount
)(UINT
*pctinfo
) override
;
56 STDMETHOD( GetTypeInfo
)( UINT iTInfo
,
58 ITypeInfo
**ppTInfo
) override
;
60 STDMETHOD( GetIDsOfNames
)( REFIID riid
,
64 DISPID
*rgDispId
) override
;
66 STDMETHOD( Invoke
)( DISPID dispIdMember
,
70 DISPPARAMS
*pDispParams
,
72 EXCEPINFO
*pExcepInfo
,
73 UINT
*puArgErr
) override
;
74 // IUnoTypeWrapper --------------------------------------
75 STDMETHOD(put_Name
)(BSTR val
) override
;
76 STDMETHOD(get_Name
)(BSTR
* pVal
) override
;
81 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */