1 //note: Visual C++-specific pragma must be added to prevent from intempestive warnings
2 //note: about template class instantiation of \samp{std::vector<\textit{T}>} in DEBUG mode!
3 #ifdef WIN32
4 #pragma warning(disable : 4786)
5 #endif
6 
7 //##protect##"include files"
8 //##protect##"include files"
9 
10 #include "Planet.h"
11 
Planet()12 Planet::Planet() : _dDiameter(0.0) {
13 }
14 
~Planet()15 Planet::~Planet() {
16 }
17 
getDistanceToSun(int iDay,int iMonth,int iYear)18 double Planet::getDistanceToSun(int iDay, int iMonth, int iYear) {
19 //##protect##"getDistanceToSun.int.int.int"
20 //##protect##"getDistanceToSun.int.int.int"
21 }
22