1*1c78a5d6SAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3*1c78a5d6SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*1c78a5d6SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*1c78a5d6SAndrew Rist * distributed with this work for additional information 6*1c78a5d6SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*1c78a5d6SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*1c78a5d6SAndrew Rist * "License"); you may not use this file except in compliance 9*1c78a5d6SAndrew Rist * with the License. You may obtain a copy of the License at 10cdf0e10cSrcweir * 11*1c78a5d6SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 13*1c78a5d6SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*1c78a5d6SAndrew Rist * software distributed under the License is distributed on an 15*1c78a5d6SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*1c78a5d6SAndrew Rist * KIND, either express or implied. See the License for the 17*1c78a5d6SAndrew Rist * specific language governing permissions and limitations 18*1c78a5d6SAndrew Rist * under the License. 19cdf0e10cSrcweir * 20*1c78a5d6SAndrew Rist *************************************************************/ 21*1c78a5d6SAndrew Rist 22*1c78a5d6SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir #ifndef ARY_CPP_C_GATE_HXX 25cdf0e10cSrcweir #define ARY_CPP_C_GATE_HXX 26cdf0e10cSrcweir 27cdf0e10cSrcweir 28cdf0e10cSrcweir // USED SERVICES 29cdf0e10cSrcweir // BASE CLASSES 30cdf0e10cSrcweir // OTHER 31cdf0e10cSrcweir #include <ary/cpp/c_types4cpp.hxx> 32cdf0e10cSrcweir 33cdf0e10cSrcweir 34cdf0e10cSrcweir 35cdf0e10cSrcweir namespace autodoc 36cdf0e10cSrcweir { 37cdf0e10cSrcweir class Options; 38cdf0e10cSrcweir } 39cdf0e10cSrcweir namespace ary 40cdf0e10cSrcweir { 41cdf0e10cSrcweir class Entity; 42cdf0e10cSrcweir 43cdf0e10cSrcweir namespace cpp 44cdf0e10cSrcweir { 45cdf0e10cSrcweir class CodeEntity; 46cdf0e10cSrcweir class CppEntity; 47cdf0e10cSrcweir class CePilot; 48cdf0e10cSrcweir class DefPilot; 49cdf0e10cSrcweir class TypePilot; 50cdf0e10cSrcweir } 51cdf0e10cSrcweir namespace loc 52cdf0e10cSrcweir { 53cdf0e10cSrcweir class LocationPilot; 54cdf0e10cSrcweir } 55cdf0e10cSrcweir } 56cdf0e10cSrcweir 57cdf0e10cSrcweir 58cdf0e10cSrcweir 59cdf0e10cSrcweir 60cdf0e10cSrcweir 61cdf0e10cSrcweir namespace ary 62cdf0e10cSrcweir { 63cdf0e10cSrcweir namespace cpp 64cdf0e10cSrcweir { 65cdf0e10cSrcweir 66cdf0e10cSrcweir 67cdf0e10cSrcweir 68cdf0e10cSrcweir /** Acess to all stored objcts in the repository, which are 69cdf0e10cSrcweir relevant to C++. 70cdf0e10cSrcweir */ 71cdf0e10cSrcweir class Gate 72cdf0e10cSrcweir { 73cdf0e10cSrcweir public: 74cdf0e10cSrcweir // LIFECYCLE ~Gate()75cdf0e10cSrcweir virtual ~Gate() {} 76cdf0e10cSrcweir 77cdf0e10cSrcweir 78cdf0e10cSrcweir // OPERATIONS 79cdf0e10cSrcweir virtual void Calculate_AllSecondaryInformation() = 0; 80cdf0e10cSrcweir // const ::autodoc::Options & 81cdf0e10cSrcweir // i_options ) = 0; 82cdf0e10cSrcweir 83cdf0e10cSrcweir // INQUIRY 84cdf0e10cSrcweir virtual const String & 85cdf0e10cSrcweir RepositoryTitle() const = 0; 86cdf0e10cSrcweir virtual const CodeEntity * 87cdf0e10cSrcweir Search_RelatedCe( 88cdf0e10cSrcweir Type_id i_type ) const = 0; 89cdf0e10cSrcweir virtual const ::ary::cpp::CppEntity * 90cdf0e10cSrcweir Search_Entity( 91cdf0e10cSrcweir GlobalId i_id ) const = 0; 92cdf0e10cSrcweir virtual uintt Get_AlphabeticalList( 93cdf0e10cSrcweir List_GlobalIds & o_result, 94cdf0e10cSrcweir const char * i_begin, 95cdf0e10cSrcweir const char * i_end ) const = 0; 96cdf0e10cSrcweir virtual const CePilot & 97cdf0e10cSrcweir Ces() const = 0; 98cdf0e10cSrcweir virtual const DefPilot & 99cdf0e10cSrcweir Defs() const = 0; 100cdf0e10cSrcweir virtual const TypePilot & 101cdf0e10cSrcweir Types() const = 0; 102cdf0e10cSrcweir virtual const loc::LocationPilot & 103cdf0e10cSrcweir Locations() const = 0; 104cdf0e10cSrcweir 105cdf0e10cSrcweir // ACCESS 106cdf0e10cSrcweir virtual CePilot & Ces() = 0; 107cdf0e10cSrcweir virtual DefPilot & Defs() = 0; 108cdf0e10cSrcweir virtual TypePilot & Types() = 0; 109cdf0e10cSrcweir virtual loc::LocationPilot & 110cdf0e10cSrcweir Locations() = 0; 111cdf0e10cSrcweir }; 112cdf0e10cSrcweir 113cdf0e10cSrcweir 114cdf0e10cSrcweir 115cdf0e10cSrcweir } // namespace cpp 116cdf0e10cSrcweir } // namespace ary 117cdf0e10cSrcweir #endif 118