VFieldObject.hpp

00001 #ifndef __VFIELDOBJECT_HPP
00002 #define __VFIELDOBJECT_HPP
00003 
00004 #include "VGridObject.hpp"
00005 
00006 namespace Wizt
00007 {
00008 
00009 class   VFieldObject : public VObject
00010 {
00011 public:
00012         RefPtr<FieldID> FieldName;
00013 
00014         VFieldObject(const RefPtr<FieldID>&field, int p, const RefPtr<VCreationPreferences>&VP)
00015         : VObject(field->Name(), p, VP)
00016         , FieldName(field)
00017         {}
00018 };
00019 
00020 
00021 } // namespace Wizt
00022 
00023 
00024 #endif