Converted norad_number_ to unsigned int

feature/19
Daniel Warner 2011-05-27 15:20:03 +00:00
parent 49477b4a4c
commit f60b1544a8
1 changed files with 2 additions and 2 deletions

4
Tle.h Normal file → Executable file
View File

@ -31,7 +31,7 @@ public:
/* /*
* get tle values * get tle values
*/ */
double NoradNumber() const { unsigned int NoradNumber() const {
return norad_number_; return norad_number_;
} }
@ -132,7 +132,7 @@ private:
/* /*
* extracted values all in native units * extracted values all in native units
*/ */
double norad_number_; unsigned int norad_number_;
std::string international_designator_; std::string international_designator_;
Julian epoch_; Julian epoch_;
double mean_motion_dot_; double mean_motion_dot_;