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_constant.hxx>
22 :
23 :
24 : // NOT FULLY DECLARED SERVICES
25 : #include <cosv/tpl/processor.hxx>
26 : #include <ary/idl/ik_constant.hxx>
27 :
28 :
29 : namespace ary
30 : {
31 : namespace idl
32 : {
33 :
34 3220 : Constant::Constant( const String & i_sName,
35 : Ce_id i_nOwner,
36 : Ce_id i_nNameRoom,
37 : Type_id i_nType,
38 : const String & i_sInitValue )
39 : : sName(i_sName),
40 : nNameRoom(i_nNameRoom),
41 : nOwner(i_nOwner),
42 : nType(i_nType),
43 3220 : sInitValue(i_sInitValue)
44 : {
45 3220 : }
46 :
47 6440 : Constant::~Constant()
48 : {
49 6440 : }
50 :
51 : void
52 3220 : Constant::do_Accept( csv::ProcessorIfc & io_processor ) const
53 : {
54 3220 : csv::CheckedCall(io_processor, *this);
55 3220 : }
56 :
57 :
58 : ClassId
59 17642 : Constant::get_AryClass() const
60 : {
61 17642 : return class_id;
62 : }
63 :
64 : const String &
65 187686 : Constant::inq_LocalName() const
66 : {
67 187686 : return sName;
68 : }
69 :
70 : Ce_id
71 628 : Constant::inq_NameRoom() const
72 : {
73 628 : return nNameRoom;
74 : }
75 :
76 : Ce_id
77 12880 : Constant::inq_Owner() const
78 : {
79 12880 : return nOwner;
80 : }
81 :
82 : E_SightLevel
83 8912 : Constant::inq_SightLevel() const
84 : {
85 8912 : return sl_Member;
86 : }
87 :
88 :
89 : namespace ifc_constant
90 : {
91 :
92 : inline const Constant &
93 6440 : constant_cast( const CodeEntity & i_ce )
94 : {
95 : csv_assert( i_ce.AryClass() == Constant::class_id );
96 6440 : return static_cast< const Constant& >(i_ce);
97 : }
98 :
99 : Type_id
100 3220 : attr::Type( const CodeEntity & i_ce )
101 : {
102 3220 : return constant_cast(i_ce).nType;
103 : }
104 :
105 : const String &
106 3220 : attr::Value( const CodeEntity & i_ce )
107 : {
108 3220 : return constant_cast(i_ce).sInitValue;
109 : }
110 :
111 : } // namespace ifc_constant
112 :
113 :
114 : } // namespace idl
115 3 : } // namespace ary
116 :
117 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|