Remove .gitignore do nothing is ignored.
[synfig.git] / synfig-core / trunk / src / synfig / valuenode_const.h
index 1756fb1..08a4559 100644 (file)
@@ -1,8 +1,8 @@
 /* === S Y N F I G ========================================================= */
 /*!    \file valuenode_const.h
-**     \brief Template Header
+**     \brief Header file for implementation of the "Constant" valuenode conversion.
 **
-**     $Id: valuenode_const.h,v 1.1.1.1 2005/01/04 01:23:15 darco Exp $
+**     $Id$
 **
 **     \legal
 **     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
@@ -43,25 +43,25 @@ public:
 
 private:
        ValueBase value;
-       
+
        ValueNode_Const();
        ValueNode_Const(const ValueBase &x);
 
 public:
-       
+
        virtual ValueBase operator()(Time t)const;
        virtual ~ValueNode_Const();
 
        const ValueBase &get_value()const;
        ValueBase &get_value();
        void set_value(const ValueBase &data);
-       
+
 
        virtual String get_name()const;
        virtual String get_local_name()const;
 
        virtual ValueNode* clone(const GUID& deriv_guid=GUID())const;
-       
+
 public:
        static ValueNode_Const* create(const ValueBase &x=ValueBase());