Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #include <precomp.h>
21 : #include <ary/idl/i_enum.hxx>
22 : #include <ary/idl/ik_enum.hxx>
23 :
24 :
25 : // NOT FULLY DECLARED SERVICES
26 : #include <cosv/tpl/processor.hxx>
27 : #include <sci_impl.hxx>
28 : #include "i2s_calculator.hxx"
29 :
30 :
31 : namespace ary
32 : {
33 : namespace idl
34 : {
35 :
36 190 : Enum::Enum( const String & i_sName,
37 : Ce_id i_nOwner )
38 : : sName(i_sName),
39 : nOwner(i_nOwner),
40 190 : aValues()
41 : {
42 190 : }
43 :
44 380 : Enum::~Enum()
45 : {
46 380 : }
47 :
48 : void
49 380 : Enum::do_Accept( csv::ProcessorIfc & io_processor ) const
50 : {
51 380 : csv::CheckedCall(io_processor, *this);
52 380 : }
53 :
54 : ClassId
55 1712 : Enum::get_AryClass() const
56 : {
57 1712 : return class_id;
58 : }
59 :
60 : const String &
61 15385 : Enum::inq_LocalName() const
62 : {
63 15385 : return sName;
64 : }
65 :
66 : Ce_id
67 4890 : Enum::inq_NameRoom() const
68 : {
69 4890 : return nOwner;
70 : }
71 :
72 : Ce_id
73 1677 : Enum::inq_Owner() const
74 : {
75 1677 : return nOwner;
76 : }
77 :
78 : E_SightLevel
79 2649 : Enum::inq_SightLevel() const
80 : {
81 2649 : return sl_File;
82 : }
83 :
84 :
85 : namespace ifc_enum
86 : {
87 :
88 : inline const Enum &
89 190 : enum_cast( const CodeEntity & i_ce )
90 : {
91 : csv_assert( i_ce.AryClass() == Enum::class_id );
92 190 : return static_cast< const Enum& >(i_ce);
93 : }
94 :
95 : void
96 190 : attr::Get_Values( Dyn_CeIterator & o_result,
97 : const CodeEntity & i_ce )
98 : {
99 190 : o_result = new SCI_Vector<Ce_id>(enum_cast(i_ce).aValues);
100 190 : }
101 :
102 :
103 : void
104 190 : xref::Get_SynonymTypedefs( Dyn_CeIterator & o_result,
105 : const CodeEntity & i_ce )
106 : {
107 190 : o_result = new SCI_Vector<Ce_id>(i_ce.Secondaries().List(enum_2s_SynonymTypedefs));
108 190 : }
109 :
110 : void
111 190 : xref::Get_AsReturns( Dyn_CeIterator & o_result,
112 : const CodeEntity & i_ce )
113 : {
114 190 : o_result = new SCI_Vector<Ce_id>(i_ce.Secondaries().List(enum_2s_AsReturns));
115 190 : }
116 :
117 : void
118 190 : xref::Get_AsParameters( Dyn_CeIterator & o_result,
119 : const CodeEntity & i_ce )
120 : {
121 190 : o_result = new SCI_Vector<Ce_id>(i_ce.Secondaries().List(enum_2s_AsParameters));
122 190 : }
123 :
124 : void
125 190 : xref::Get_AsDataTypes( Dyn_CeIterator & o_result,
126 : const CodeEntity & i_ce )
127 : {
128 190 : o_result = new SCI_Vector<Ce_id>(i_ce.Secondaries().List(enum_2s_AsDataTypes));
129 190 : }
130 :
131 : } // namespace ifc_enum
132 :
133 :
134 : } // namespace idl
135 3 : } // namespace ary
136 :
137 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|