X3D_Info.h

Go to the documentation of this file.
00001 #ifndef INFO_H
00002 #define INFO_H
00003 
00004 #include <X3DTK/X3D/scenegraph.h>
00005 #include "Date.h"
00006 
00007 namespace X3DTK {
00008 namespace X3D {
00009 
00010 class Price;
00011 class Modeler;
00012 
00013 // Info node.
00014 
00015 class Info : public X3DChildNode
00016 {
00017 public:
00018   Info();
00019 
00020   void setDate(const Date &date);
00021 
00022   inline const Date &getDate() const {return _date;};
00023   inline Price *getPrice() const {return _price;};
00024   inline Modeler *getModeler() const {return _modeler;};  
00025 
00026 private:
00027   Date _date;
00028   Price *_price;
00029   Modeler *_modeler;
00030 };
00031 
00032 }
00033 }
00034 
00035 #endif

Generated on Mon Jul 12 09:40:00 2004 for X3DToolKit by doxygen 1.3.6