00001 #ifndef ASTVALIDATE_H
00002 #define ASTVALIDATE_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00014
00015 #include "AstroUtil/Ast.h"
00016 #include "AstroUtil/AstCoordinate.h"
00017
00018 class AstValidate {
00019
00020 public:
00021
00022
00023 AstValidate();
00024 virtual ~AstValidate();
00025
00026
00027
00028
00029 bool RunAllTests(void);
00030
00031 private:
00032 bool TestLocalToIdeal();
00033 bool TestIdealToHorizon();
00034 bool TestHorizonToEquatorial();
00035 bool TestEquatorialToCelestial();
00036 bool TestJulianDateToSiderealTime();
00037
00038 };
00039
00040 #endif // ASTVALIDATE_H
00041
00042
00043
00044
00045
00046
00047