00001 // 00002 // C++ Interface: starname 00003 // 00004 // Description: 00005 // 00006 // 00007 // Author: Toti <root@totibox>, (C) 2005 00008 // 00009 // Copyright: See COPYING file that comes with this distribution 00010 // 00011 // 00012 00013 #ifndef _STARNAME_H_ 00014 #define _STARNAME_H_ 00015 00016 #include <celengine/name.h> 00017 #include <celengine/star.h> 00018 00019 00020 class StarNameDatabase: public NameDatabase<Star> 00021 { 00022 public: 00023 StarNameDatabase() {}; 00024 00025 00026 uint32 findCatalogNumberByName(const std::string&) const; 00027 00028 static StarNameDatabase* readNames(std::istream&); 00029 }; 00030 00031 #endif // _STARNAME_H_
1.4.1