X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fsynfig%2Fkeyframe.h;h=d8f9bf7d6eb4e91d0fd5e3dfcebba89d34180db2;hb=8c959946a8e6cacbc91a42b468af71b399cf014c;hp=0cae5b32fae165b6d86f39ebbefa4c8913b8fadd;hpb=e8a065f2385c219c511b57dac52786120bfa097d;p=synfig.git diff --git a/synfig-core/trunk/src/synfig/keyframe.h b/synfig-core/trunk/src/synfig/keyframe.h index 0cae5b3..d8f9bf7 100644 --- a/synfig-core/trunk/src/synfig/keyframe.h +++ b/synfig-core/trunk/src/synfig/keyframe.h @@ -2,7 +2,7 @@ /*! \file keyframe.h ** \brief Template Header ** -** $Id: keyframe.h,v 1.1.1.1 2005/01/04 01:23:14 darco Exp $ +** $Id$ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley @@ -50,7 +50,7 @@ public: Time time_; String desc_; GUID guid_; - + public: Keyframe(); @@ -60,11 +60,11 @@ public: ~Keyframe(); void set_time(Time x) { time_=x; } - + Time get_time()const { return time_; } void set_description(String x) { desc_=x; } - + String get_description()const { return desc_; } const GUID& get_guid()const { return guid_; } @@ -74,7 +74,7 @@ public: using UniqueID::operator==; using UniqueID::operator!=; using UniqueID::operator=; - + bool operator<(const Keyframe &rhs)const { return time_ KeyframeList;