00001 00002 00008 /* 00009 * 00010 */ 00012 00013 #ifndef __SSF_ORBIT_FRAME_RSW_H__ 00014 #define __SSF_ORBIT_FRAME_RSW_H__ 00015 #include "OrbitFrame.h" 00016 00032 class OrbitFrameRSW : public OrbitFrame 00033 { 00034 public: 00035 OrbitFrameRSW(); 00036 virtual ~OrbitFrameRSW(); 00037 00038 OrbitFramePQW* NewPointer(); 00039 OrbitFramePQW* Clone(); 00040 protected: 00041 00042 00043 private: 00044 00045 }; 00046 inline OrbitFrameRSW::OrbitFrameRSW() {}; 00047 inline OrbitFrameRSW::~OrbitFrameRSW() {}; 00048 inline OrbitFrameRSW* OrbitFrameRSW::NewPointer() { return new OrbitFrameRSW(); } 00049 inline OrbitFrameRSW* OrbitFrameRSW::Clone() { return new OrbitFrameRSW(*this); } 00050 00051 #endif 00052 00053 // Do not change the comments below - they will be added automatically by CVS 00054 /***************************************************************************** 00055 * $Log: OrbitFrameRSW.h,v $ 00056 * Revision 1.7 2003/05/21 03:51:38 nilspace 00057 * Fixed spelling of "the" in comments. 00058 * 00059 * Revision 1.6 2003/05/20 17:47:59 nilspace 00060 * Updated comments. 00061 * 00062 * Revision 1.5 2003/04/29 20:17:40 nilspace 00063 * Added NewPointer() and Clone() functions. 00064 * 00065 * Revision 1.4 2003/04/29 18:45:35 nilspace 00066 * Moved all function definitions out of class interface definition. 00067 * 00068 * Revision 1.3 2003/04/23 16:26:07 nilspace 00069 * Updated directory structure & default parameters. 00070 * 00071 * Revision 1.2 2003/04/22 17:37:25 nilspace 00072 * Added reference frames. 00073 * 00074 * Revision 1.1 2003/04/08 22:48:04 nilspace 00075 * Initial Submission. 00076 * 00077 * 00078 ******************************************************************************/