[Gcblue-commits] gcb_wx/include/database tcGenericDBObject.h,1.4,1.5
Status: Alpha
Brought to you by:
ddcforge
From: <ddc...@us...> - 2004-01-14 01:13:25
|
Update of /cvsroot/gcblue/gcb_wx/include/database In directory sc8-pr-cvs1:/tmp/cvs-serv10758/include/database Modified Files: tcGenericDBObject.h Log Message: more animation work Index: tcGenericDBObject.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/database/tcGenericDBObject.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** tcGenericDBObject.h 4 Jan 2004 22:24:52 -0000 1.4 --- tcGenericDBObject.h 14 Jan 2004 01:13:21 -0000 1.5 *************** *** 26,29 **** --- 26,32 ---- #include "tcDatabaseObject.h" + #include <vector> + + struct animationDBInfo; namespace Database *************** *** 41,45 **** { MAXLAUNCHERS = 8, ! MAXSENSORS = 8 }; float mfRcs_dbsm; ///< radar cross section, [dBsm] --- 44,49 ---- { MAXLAUNCHERS = 8, ! MAXSENSORS = 8, ! MAXANIMATIONS = 4 }; float mfRcs_dbsm; ///< radar cross section, [dBsm] *************** *** 65,69 **** --- 69,75 ---- float sensorAz[MAXSENSORS]; ///< pointing angles of sensors in degrees tcDBString flightportClass; ///< database class name of flightport (or empty if none) + std::vector<animationDBInfo> animationInfo; + void Animate3DModel(); void RandInit(); virtual void PrintToFile(tcFile& file); |