|
UniSet
2.0.0
|
00001 /* File: This file is part of the UniSet project 00002 * Copyright (C) 2002 Vitaly Lipatov 00003 * 00004 * This program is free software; you can redistribute it and/or modify 00005 * it under the terms of the GNU General Public License as published by 00006 * the Free Software Foundation; either version 2 of the License, or 00007 * (at your option) any later version. 00008 * 00009 * This program is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 * GNU General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU General Public License 00015 * along with this program; if not, write to the Free Software 00016 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00017 */ 00018 // -------------------------------------------------------------------------- 00022 // -------------------------------------------------------------------------- 00023 #ifndef ObjcetIndex_H_ 00024 #define ObjcetIndex_H_ 00025 // -------------------------------------------------------------------------- 00026 #include <ostream> 00027 #include <string> 00028 #include "UniSetTypes.h" 00029 // -------------------------------------------------------------------------- 00030 namespace UniSetTypes 00031 { 00032 class ObjectIndex 00033 { 00034 public: 00035 ObjectIndex(){}; 00036 virtual ~ObjectIndex(){}; 00037 00038 // info 00039 virtual const ObjectInfo* getObjectInfo( const UniSetTypes::ObjectId )=0; 00040 virtual const ObjectInfo* getObjectInfo( const std::string& name )=0; 00041 00042 static std::string getBaseName( const std::string& fname ); 00043 00044 // object id 00045 virtual ObjectId getIdByName(const std::string& name)=0; 00046 virtual std::string getNameById( const UniSetTypes::ObjectId id ); 00047 00048 // node 00049 inline std::string getNodeName( const UniSetTypes::ObjectId id ) 00050 { 00051 return getNameById(id); 00052 } 00053 00054 inline ObjectId getNodeId( const std::string& name ) { return getIdByName(name); } 00055 00056 // src name 00057 virtual std::string getMapName( const UniSetTypes::ObjectId id )=0; 00058 virtual std::string getTextName( const UniSetTypes::ObjectId id )=0; 00059 00060 // 00061 virtual std::ostream& printMap(std::ostream& os)=0; 00062 00063 void initLocalNode( const UniSetTypes::ObjectId nodeid ); 00064 00065 protected: 00066 std::string nmLocalNode; // для оптимизации 00067 00068 private: 00069 00070 }; 00071 00072 00073 // ----------------------------------------------------------------------------------------- 00074 } // end of namespace 00075 // ----------------------------------------------------------------------------------------- 00076 #endif
1.7.6.1