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

OpenGL

开发平台:

Visual C++

  1. // spiceinterface.cpp
  2. //
  3. // Interface to the SPICE Toolkit
  4. //
  5. // Copyright (C) 2006-2008, Chris Laurel <claurel@shatters.net>
  6. //
  7. // This program is free software; you can redistribute it and/or
  8. // modify it under the terms of the GNU General Public License
  9. // as published by the Free Software Foundation; either version 2
  10. // of the License, or (at your option) any later version.
  11. #ifndef _CELENGINE_SPICEINTERFACE_H_
  12. #define _CELENGINE_SPICEINTERFACE_H_
  13. #include <string>
  14. extern bool InitializeSpice();
  15. // SPICE utility functions
  16. extern bool GetNaifId(const std::string& name, int* id);
  17. extern bool IsSpiceKernelLoaded(const std::string& filepath);
  18. extern bool LoadSpiceKernel(const std::string& filepath);
  19. #endif // _CELENGINE_SPICEINTERFACE_H_