1 /************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 24 #ifndef ARY_IDL_I_CONSTGROUP_HXX 25 #define ARY_IDL_I_CONSTGROUP_HXX 26 27 // BASE CLASSES 28 #include <ary/idl/i_ce.hxx> 29 30 31 32 33 namespace ary 34 { 35 namespace idl 36 { 37 namespace ifc_constgroup 38 { 39 struct attr; 40 } 41 42 43 /** Represents an IDL constants group. 44 */ 45 class ConstantsGroup : public CodeEntity 46 { 47 public: 48 enum E_ClassId { class_id = 2011 }; 49 50 // LIFECYCLE 51 ConstantsGroup( 52 const String & i_sName, 53 Ce_id i_nModule ); 54 ~ConstantsGroup(); 55 // ACCESS 56 void Add_Constant( 57 Ce_id i_nConstant ); 58 private: 59 // Interface csv::ConstProcessorClient: 60 virtual void do_Accept( 61 csv::ProcessorIfc & io_processor ) const; 62 // Interface ary::Object 63 virtual ClassId get_AryClass() const; 64 65 // Interface CodeEntity 66 virtual const String & inq_LocalName() const; 67 virtual Ce_id inq_NameRoom() const; 68 virtual Ce_id inq_Owner() const; 69 virtual E_SightLevel inq_SightLevel() const; 70 71 // Locals 72 typedef std::vector<Ce_id> ConstantList; 73 friend struct ifc_constgroup::attr; 74 75 // DATA 76 String sName; 77 Ce_id nModule; 78 79 ConstantList aConstants; 80 }; 81 82 83 84 85 // IMPLEMENTATION 86 inline void Add_Constant(Ce_id i_nConstant)87ConstantsGroup::Add_Constant( Ce_id i_nConstant ) 88 { 89 aConstants.push_back(i_nConstant); 90 } 91 92 93 94 95 } // namespace idl 96 } // namespace ary 97 #endif 98