Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   File Members   Related Pages  

X3D_Scene.h

Go to the documentation of this file.
00001 
00002 //                            X3D_Scene.h                                     //
00004 
00005 #ifndef SCENE_H
00006 #define SCENE_H
00007 
00008 #include "X3DTypes.h"
00009 #include "X3D_X3DGroupingNode.h"
00010 #include "X3D_X3DBoundedObject.h"
00011 
00012 namespace X3DTK {
00013 namespace X3D {
00014 
00016 
00017 class Scene : public X3DGroupingNode, public X3DBoundedObject
00018 {
00019 public:
00021   Scene();
00023   virtual SFAbstractNode clone() const;
00025   virtual ~Scene();
00026 
00028   void setFileName(const SFString &file);
00029  
00031   inline const SFString &getFileName() const {return _fileName;};
00032 
00034   virtual void load(const X3DFileElement *element);
00036   virtual SFString &write(SFString &output) const;
00037 
00038 protected:
00040   Scene(const Scene &S);
00041 
00042 private:  
00044   SFString _fileName;
00045 };
00046 
00047 }
00048 }
00049 
00050 #endif

Generated on Mon Jan 19 10:32:07 2004 for X3DToolKit by doxygen1.2.18