00001 /* === S Y N F I G ========================================================= */ 00021 /* ========================================================================= */ 00022 00023 /* === S T A R T =========================================================== */ 00024 00025 #ifndef __SYNFIG_TIMEPOINTCOLLECT_H 00026 #define __SYNFIG_TIMEPOINTCOLLECT_H 00027 00028 /* === H E A D E R S ======================================================= */ 00029 00030 #include <set> 00031 #include "activepoint.h" 00032 #include "waypoint.h" 00033 #include "node.h" 00034 #include "time.h" 00035 00036 /* === M A C R O S ========================================================= */ 00037 00038 /* === T Y P E D E F S ===================================================== */ 00039 00040 /* === C L A S S E S & S T R U C T S ======================================= */ 00041 00042 namespace synfig { 00043 00045 int waypoint_collect(std::set<Waypoint, std::less<UniqueID> >& waypoint_set,const Time& time, const etl::handle<Node>& node); 00046 00048 int activepoint_collect(std::set<Activepoint, std::less<UniqueID> >& activepoint_set,const Time& time, const etl::handle<Node>& node); 00049 00050 }; // END of namespace synfig 00051 00052 /* === E N D =============================================================== */ 00053 00054 #endif