src/core/model/attribute.h
changeset 7399 520706f801e8
parent 6821 203367ae7433
child 9969 e813ecb3613d
--- a/src/core/model/attribute.h	Wed Aug 03 13:52:16 2011 -0400
+++ b/src/core/model/attribute.h	Wed Aug 03 13:58:10 2011 -0400
@@ -151,6 +151,8 @@
 public:
   AttributeChecker ();
   virtual ~AttributeChecker ();
+
+  Ptr<AttributeValue> CreateValidValue (const AttributeValue &value) const;
   /**
    * \param value a pointer to the value to check
    * \returns true if the input value is both of the right type
@@ -191,6 +193,7 @@
 
   virtual bool Copy (const AttributeValue &source, AttributeValue &destination) const = 0;
 
+  
 };
 
 /**