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