X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Fsrc%2Fsynfig%2Fvaluenode_animated.h;h=093236afbb02d54b9b89e0fd04f9766f9f88709c;hb=54980cebf3a0614785e19ffc2772f15e1fcc379a;hp=533f939a938f7222169378f66ae889080be48f0b;hpb=1b5e2c635ec3a0d2eaf4ee2ab8b09e5a9afc25ad;p=synfig.git diff --git a/synfig-core/src/synfig/valuenode_animated.h b/synfig-core/src/synfig/valuenode_animated.h index 533f939..093236a 100644 --- a/synfig-core/src/synfig/valuenode_animated.h +++ b/synfig-core/src/synfig/valuenode_animated.h @@ -63,6 +63,7 @@ public: typedef std::pair const_findresult; protected: + //! List of Waypoints. \see waypoint.h WaypointList waypoint_list_; public: @@ -117,7 +118,9 @@ public: virtual ~ValueNode_Animated(); + //! Virtual member to be filled by inherited classes virtual String get_name()const; + //! Virtual member to be filled by inherited classes virtual String get_local_name()const; //! Creates a Valuenode_Animated by type @@ -137,7 +140,11 @@ public: protected: ValueNode_Animated(); + //! Sets thee type of the Animated Value Node void set_type(ValueBase::Type t); + //! Function to be overloaded that fills the Time Point Set with + //! all the children Time Points. Time Point is like Waypoint but + //! without value node virtual void get_times_vfunc(Node::time_set &set) const; };