00001 /* === S Y N F I G ========================================================= */ 00021 /* ========================================================================= */ 00022 00023 /* === S T A R T =========================================================== */ 00024 00025 #ifndef __SYNFIG_VALUENODE_GREYED_H 00026 #define __SYNFIG_VALUENODE_GREYED_H 00027 00028 /* === H E A D E R S ======================================================= */ 00029 00030 #include "valuenode_reference.h" 00031 00032 /* === M A C R O S ========================================================= */ 00033 00034 /* === C L A S S E S & S T R U C T S ======================================= */ 00035 00036 namespace synfig { 00037 00038 class ValueNode_Greyed : public ValueNode_Reference 00039 { 00040 public: 00041 typedef etl::handle<ValueNode_Greyed> Handle; 00042 ValueNode_Greyed(const ValueBase::Type &x); 00043 ValueNode_Greyed(const ValueNode::Handle &x); 00044 00045 virtual String get_name()const; 00046 virtual String get_local_name()const; 00047 00048 protected: 00049 LinkableValueNode* create_new()const; 00050 00051 public: 00052 static ValueNode_Greyed* create(const ValueBase &x); 00053 00054 }; // END of class ValueNode_Greyed 00055 00056 }; // END of namespace synfig 00057 00058 /* === E N D =============================================================== */ 00059 00060 #endif