Update of /cvsroot/gcblue/gcb_wx/include/database
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7549/include/database
Modified Files:
tcGenericDBObject.h
Log Message:
Index: tcGenericDBObject.h
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/include/database/tcGenericDBObject.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** tcGenericDBObject.h 18 Jul 2004 03:17:59 -0000 1.8
--- tcGenericDBObject.h 6 Aug 2004 02:47:50 -0000 1.9
***************
*** 29,36 ****
--- 29,38 ----
#include "tcDatabaseObject.h"
#include <vector>
+ #include "tc3DPoint.h"
struct animationDBInfo;
class TiXmlElement;
+
namespace Database
{
***************
*** 72,76 ****
--- 74,81 ----
tcDBString maSensorClass[MAXSENSORS];
float launcherAz[MAXLAUNCHERS]; ///< pointing angles of launchers in degrees
+ tc3DPoint launcherPosition[MAXLAUNCHERS]; ///< relative position of launchers in meters
float sensorAz[MAXSENSORS]; ///< pointing angles of sensors in degrees
+
+
tcDBString flightportClass; ///< database class name of flightport (or empty if none)
std::vector<animationDBInfo> animationInfo;
***************
*** 79,82 ****
--- 84,88 ----
virtual const char* GetClassName() {return "Generic";} ///< returns class name of database object
tcFlightportDBObject* GetFlightport();
+ tc3DPoint GetLauncherPosition(unsigned n);
void RandInit();
virtual void PrintToFile(tcFile& file);
|