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 .
20 #ifndef ADC_DISPLAY_HFI_METHOD_HXX
21 #define ADC_DISPLAY_HFI_METHOD_HXX
27 #include "hi_factory.hxx"
30 #include <ary/idl/i_param.hxx>
31 #include <ary/doc/d_oldidldocu.hxx>
41 class HF_FunctionDeclaration
;
43 class HF_IdlMethod
: public HtmlFactory_Idl
46 typedef ary::StdConstIterator
<ary::idl::Parameter
> param_list
;
49 Environment
& io_rEnv
,
50 Xml::Element
& o_cell
);
51 virtual ~HF_IdlMethod();
54 const String
& i_sName
,
55 type_id i_nReturnType
,
56 param_list
& i_rParams
,
57 type_list
& i_rExceptions
,
60 const client
& i_ce
) const;
62 void write_Declaration(
63 const String
& i_sName
,
64 type_id i_nReturnType
,
65 param_list
& i_rParams
,
66 type_list
& i_rExceptions
,
68 bool i_bEllipse
) const;
70 // HF_IdlTypeText & o_type,
71 // Xml::Element & o_names,
72 // const ary::idl::Parameter &
75 Xml::Element
* write_Param(
76 HF_FunctionDeclaration
&
78 const ary::idl::Parameter
&
80 void enter_ContentCell() const;
81 void leave_ContentCell() const;
93 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */