Fix 1698604: Moved the quick_rng class into its own header, since it was present...
[synfig.git] / synfig-core / trunk / src / synfig / valuenode_const.h
index 1756fb1..d153ee1 100644 (file)
@@ -2,7 +2,7 @@
 /*!    \file valuenode_const.h
 **     \brief Template Header
 **
-**     $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());