synfig-core  1.0.3
valuenode_reverse.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
25 /* ========================================================================= */
26 
27 /* === S T A R T =========================================================== */
28 
29 #ifndef __SYNFIG_VALUENODE_REVERSE_H
30 #define __SYNFIG_VALUENODE_REVERSE_H
31 
32 /* === H E A D E R S ======================================================= */
33 
34 #include <synfig/valuenode.h>
35 
36 /* === M A C R O S ========================================================= */
37 
38 /* === C L A S S E S & S T R U C T S ======================================= */
39 
40 namespace synfig {
41 
43 {
44  ValueNode::RHandle link_;
45 
46 public:
47  typedef etl::handle<ValueNode_Reverse> Handle;
48  typedef etl::handle<const ValueNode_Reverse> ConstHandle;
49 
51  ValueNode_Reverse(const ValueBase &x);
52 
53  virtual ValueBase operator()(Time t)const;
54 
55  virtual ~ValueNode_Reverse();
56 
57  virtual String get_name()const;
58  virtual String get_local_name()const;
59 
60  virtual ValueNode::LooseHandle get_link_vfunc(int i)const;
61 
62 protected:
64  virtual bool set_link_vfunc(int i,ValueNode::Handle x);
65 
66 public:
68 
70  static bool check_type(Type &type);
71  static ValueNode_Reverse* create(const ValueBase &x);
72  virtual Vocab get_children_vocab_vfunc()const;
73 }; // END of class ValueNode_Reverse
74 
75 }; // END of namespace synfig
76 
77 /* === E N D =============================================================== */
78 
79 #endif