[Gcblue-commits] gcb_wx/include/database tcAirDBObject.h, 1.15, 1.16
Status: Alpha
Brought to you by:
ddcforge
From: Dewitt C. <ddc...@us...> - 2006-11-27 00:46:29
|
Update of /cvsroot/gcblue/gcb_wx/include/database In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv3865/include/database Modified Files: tcAirDBObject.h Log Message: Index: tcAirDBObject.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/database/tcAirDBObject.h,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** tcAirDBObject.h 20 Nov 2006 00:16:25 -0000 1.15 --- tcAirDBObject.h 27 Nov 2006 00:46:24 -0000 1.16 *************** *** 30,34 **** #include "tcPlatformDBObject.h" #include "tcAirDetectionDBObject.h" ! namespace database --- 30,34 ---- #include "tcPlatformDBObject.h" #include "tcAirDetectionDBObject.h" ! #include "tcWaterDetectionDBObject.h" namespace database *************** *** 38,44 **** /** * Models a simple air platform (fixed wing or helo). Specialization of ! * old tcGenericDBObject */ ! class tcAirDBObject : public tcPlatformDBObject, public tcAirDetectionDBObject { public: --- 38,46 ---- /** * Models a simple air platform (fixed wing or helo). Specialization of ! * old tcGenericDBObject. ! * ! * Added tcWaterDetectionDBObject parent to support dipping sonar */ ! class tcAirDBObject : public tcPlatformDBObject, public tcAirDetectionDBObject, public tcWaterDetectionDBObject { public: *************** *** 66,70 **** virtual ~tcAirDBObject(); private: ! }; --- 68,72 ---- virtual ~tcAirDBObject(); private: ! void CalculateParams(); }; |