use insert function instead of for loop
[LibreOffice.git] / extensions / source / ole / unotypewrapper.hxx
blob1857e238f715107d426f8c94f004f9ea5cb2e14a
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
19 #pragma once
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);
32 class UnoTypeWrapper:
33 public CComObjectRootEx<CComMultiThreadModel>,
34 public IUnoTypeWrapper,
35 public IDispatch
37 public:
38 UnoTypeWrapper();
39 virtual ~UnoTypeWrapper();
41 BEGIN_COM_MAP(UnoTypeWrapper)
42 COM_INTERFACE_ENTRY(IDispatch)
43 COM_INTERFACE_ENTRY(IUnoTypeWrapper)
44 #if defined __clang__
45 #pragma clang diagnostic push
46 #pragma clang diagnostic ignored "-Winconsistent-missing-override"
47 #endif
48 END_COM_MAP()
49 #if defined __clang__
50 #pragma clang diagnostic pop
51 #endif
53 // IDispatch -------------------------------------------
54 STDMETHOD( GetTypeInfoCount)(UINT *pctinfo) override;
56 STDMETHOD( GetTypeInfo)( UINT iTInfo,
57 LCID lcid,
58 ITypeInfo **ppTInfo) override;
60 STDMETHOD( GetIDsOfNames)( REFIID riid,
61 LPOLESTR *rgszNames,
62 UINT cNames,
63 LCID lcid,
64 DISPID *rgDispId) override;
66 STDMETHOD( Invoke)( DISPID dispIdMember,
67 REFIID riid,
68 LCID lcid,
69 WORD wFlags,
70 DISPPARAMS *pDispParams,
71 VARIANT *pVarResult,
72 EXCEPINFO *pExcepInfo,
73 UINT *puArgErr) override;
74 // IUnoTypeWrapper --------------------------------------
75 STDMETHOD(put_Name)(BSTR val) override;
76 STDMETHOD(get_Name)(BSTR* pVal) override;
78 CComBSTR m_sName;
81 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */