[Gcblue-commits] gcb_wx/include/database tcDatabaseObject.h,1.18,1.19 tcGenericDBObject.h,1.13,1.14
Status: Alpha
Brought to you by:
ddcforge
|
From: Dewitt C. <ddc...@us...> - 2004-12-30 17:26:20
|
Update of /cvsroot/gcblue/gcb_wx/include/database In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1667/include/database Modified Files: tcDatabaseObject.h tcGenericDBObject.h Log Message: Group selection Ctrl and Alt+number commands Index: tcGenericDBObject.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/database/tcGenericDBObject.h,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** tcGenericDBObject.h 7 Dec 2004 03:59:07 -0000 1.13 --- tcGenericDBObject.h 30 Dec 2004 17:26:06 -0000 1.14 *************** *** 89,92 **** --- 89,93 ---- void Animate3DModel(); + virtual tc3DModel* Get3DModel(); virtual const char* GetClassName() {return "Generic";} ///< returns class name of database object bool IsLeaf() const; ///< returns true if db obj is a leaf obj Index: tcDatabaseObject.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/database/tcDatabaseObject.h,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** tcDatabaseObject.h 2 Dec 2004 04:17:23 -0000 1.18 --- tcDatabaseObject.h 30 Dec 2004 17:26:06 -0000 1.19 *************** *** 139,143 **** static void AttachDatabase(tcDatabase *db) {database = db;} virtual const char* GetClassName() {return "Object";} ///< returns class name of database object ! tc3DModel* Get3DModel(); bool IsLeaf() const; ///< returns true if db obj is a leaf obj void Load3DModel(); --- 139,143 ---- static void AttachDatabase(tcDatabase *db) {database = db;} virtual const char* GetClassName() {return "Object";} ///< returns class name of database object ! virtual tc3DModel* Get3DModel(); bool IsLeaf() const; ///< returns true if db obj is a leaf obj void Load3DModel(); |