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

OpenGL

开发平台:

Visual C++

  1. // wineclipses.h by Kendrix <kendrix@wanadoo.fr>
  2. // 
  3. // Copyright (C) 2001, Chris Laurel <claurel@shatters.net>
  4. //
  5. // Compute Solar Eclipses for our Solar System planets
  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 _WINECLIPSES_H_
  12. #define _WINECLIPSES_H_
  13. #include <vector>
  14. #include "celestiacore.h"
  15. class EclipseFinderDialog
  16. {
  17.  public:
  18.     EclipseFinderDialog(HINSTANCE, HWND, CelestiaCore*);
  19.  public:
  20.     CelestiaCore* appCore;
  21.     HWND parent;
  22.     HWND hwnd;
  23.     std::string strPlaneteToFindOn;
  24.     SYSTEMTIME fromTime, toTime;
  25.     double TimetoSet_;
  26.     Body* BodytoSet_;
  27.     bool bSolar;
  28. };
  29. #endif // _WINECLIPSES_H_