00001 #ifndef XDKWRL_WORLDINFO_H
00002 #define XDKWRL_WORLDINFO_H
00003
00004 #include <xdkwrl/config.h>
00005 #include <xdkwrl/node.h>
00006 #include <xdkwrl/fieldtypes/mfstring.h>
00007 #include <xdkwrl/fieldtypes/sfstring.h>
00008
00009 namespace wrl
00010 {
00011
00012
00013
00014 class XDKWRL_EXPORT WorldInfo : public Node
00015 {
00016 public:
00017 WorldInfo(const char* name="");
00018 virtual ~WorldInfo();
00019 virtual inline unsigned int nbFields() const;
00020 virtual FieldHandle field(const std::string& n);
00021 virtual FieldHandle field(unsigned int i);
00022 virtual bool isSetToDefaultValue(unsigned int i) const;
00023 virtual inline unsigned int nbEventsIn() const;
00024 virtual EventInHandle eventIn(const std::string& n);
00025 virtual EventInHandle eventIn(unsigned int i);
00026 virtual inline unsigned int nbEventsOut() const;
00027 virtual EventOutHandle eventOut(const std::string& n);
00028 virtual EventOutHandle eventOut(unsigned int i);
00029 inline const char* typeName() const;
00030 virtual Node* duplicate() const;
00031 virtual Node* duplicate(std::map<const Node*,Node*>&) const;
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050 MFString info;
00051
00052
00053
00054
00055
00056
00057
00058
00059 SFString title;
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071 };
00072 };
00073
00074
00075
00076
00077
00078
00079 inline const char*
00080 wrl::WorldInfo::typeName() const
00081 {
00082 return "WorldInfo";
00083 }
00084
00085
00086
00087 inline unsigned int
00088 wrl::WorldInfo::nbFields() const
00089 {
00090 return 2;
00091 }
00092
00093
00094
00095 inline unsigned int
00096 wrl::WorldInfo::nbEventsIn() const
00097 {
00098 return 0;
00099 }
00100
00101
00102
00103 inline unsigned int
00104 wrl::WorldInfo::nbEventsOut() const
00105 {
00106 return 0;
00107 }
00108 #endif // XDKWRL_WORLDINFO_H
00109
00110
00111
00112
00113
00114