fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / autodoc / source / display / idl / hfi_method.hxx
blob2200fab6789255a30ce1e0e2290beb09026436dc
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 .
20 #ifndef ADC_DISPLAY_HFI_METHOD_HXX
21 #define ADC_DISPLAY_HFI_METHOD_HXX
25 // USED SERVICES
26 // BASE CLASSES
27 #include "hi_factory.hxx"
28 // COMPONENTS
29 // PARAMETERS
30 #include <ary/idl/i_param.hxx>
31 #include <ary/doc/d_oldidldocu.hxx>
33 namespace csi
35 namespace idl
37 class Parameter;
41 class HF_FunctionDeclaration;
43 class HF_IdlMethod : public HtmlFactory_Idl
45 public:
46 typedef ary::StdConstIterator<ary::idl::Parameter> param_list;
48 HF_IdlMethod(
49 Environment & io_rEnv,
50 Xml::Element & o_cell );
51 virtual ~HF_IdlMethod();
53 void Produce_byData(
54 const String & i_sName,
55 type_id i_nReturnType,
56 param_list & i_rParams,
57 type_list & i_rExceptions,
58 bool i_bOneway,
59 bool i_bEllipse,
60 const client & i_ce ) const;
61 private:
62 void write_Declaration(
63 const String & i_sName,
64 type_id i_nReturnType,
65 param_list & i_rParams,
66 type_list & i_rExceptions,
67 bool i_bOneway,
68 bool i_bEllipse ) const;
69 // void write_Param(
70 // HF_IdlTypeText & o_type,
71 // Xml::Element & o_names,
72 // const ary::idl::Parameter &
73 // i_param ) const;
75 Xml::Element * write_Param(
76 HF_FunctionDeclaration &
77 o_decl,
78 const ary::idl::Parameter &
79 i_param ) const;
80 void enter_ContentCell() const;
81 void leave_ContentCell() const;
86 // IMPLEMENTATION
90 #endif
93 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */