synfig-core  1.0.3
layer_skeleton.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
21 /* ========================================================================= */
22 
23 /* === S T A R T =========================================================== */
24 
25 #ifndef __SYNFIG_LAYER_SKELETON_H
26 #define __SYNFIG_LAYER_SKELETON_H
27 
28 /* === H E A D E R S ======================================================= */
29 
30 #include <synfig/bone.h>
31 #include "layer_polygon.h"
32 // #include <synfig/value.h>
33 // #include <vector>
34 
35 /* === M A C R O S ========================================================= */
36 
37 /* === T Y P E D E F S ===================================================== */
38 
39 /* === C L A S S E S & S T R U C T S ======================================= */
40 
41 namespace synfig {
42 
44 {
46 private:
47 
49  ValueBase param_bones;
51  ValueBase param_name;
52 
53 public:
54 
56 
57 #ifdef _DEBUG
58  ~Layer_Skeleton();
59 #endif
60 
61  virtual bool set_param(const synfig::String & param, const synfig::ValueBase &value);
62 
63  virtual synfig::ValueBase get_param(const synfig::String & param)const;
64 
65  virtual Vocab get_param_vocab()const;
66 
68  virtual void sync();
69  virtual void set_time(IndependentContext context, Time time)const;
70  virtual void set_time(IndependentContext context, Time time, const Point &pos)const;
71 }; // END of class Layer_Skeleton
72 
73 }; // END of namespace synfig
74 
75 /* === E N D =============================================================== */
76 
77 #endif