starname.h
上传用户:center1979
上传日期:2022-07-26
资源大小:50633k
文件大小:0k
源码类别:

OpenGL

开发平台:

Visual C++

  1. //
  2. // C++ Interface: starname
  3. //
  4. // Description:
  5. //
  6. //
  7. // Author: Toti <root@totibox>, (C) 2005
  8. //
  9. // Copyright: See COPYING file that comes with this distribution
  10. //
  11. //
  12. #ifndef _STARNAME_H_
  13. #define _STARNAME_H_
  14. #include <celengine/name.h>
  15. #include <celengine/star.h>
  16. class StarNameDatabase: public NameDatabase<Star>
  17. {
  18.  public:
  19.     StarNameDatabase() {};
  20.     uint32 findCatalogNumberByName(const std::string&) const;
  21.     static StarNameDatabase* readNames(std::istream&);
  22. };
  23. #endif // _STARNAME_H_