Added copyright lines for files I've edited this year.
[synfig.git] / synfig-core / trunk / src / synfig / loadcanvas.h
index 80cf4d7..3c9ce10 100644 (file)
@@ -2,10 +2,11 @@
 /*!    \file loadcanvas.h
 **     \brief writeme
 **
-**     $Id: loadcanvas.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
+**     Copyright (c) 2007, 2008 Chris Moore
 **
 **     This package is free software; you can redistribute it and/or
 **     modify it under the terms of the GNU General Public License as
 #include "valuenode_subtract.h"
 #include "valuenode_animated.h"
 #include "valuenode_composite.h"
-#include "valuenode_const.h"
-#include "valuenode_linear.h"
 #include "valuenode_dynamiclist.h"
-#include "valuenode_reference.h"
-#include "valuenode_timedswap.h"
 #include "keyframe.h"
 #include "guid.h"
 
@@ -144,18 +141,18 @@ private:
 
        // ValueBase Parsing Functions
 
-       Real parse_real(xmlpp::Element *node,Canvas::Handle canvas);
+       Real parse_real(xmlpp::Element *node);
        Time parse_time(xmlpp::Element *node,Canvas::Handle canvas);
-       int parse_integer(xmlpp::Element *node,Canvas::Handle canvas);
-       Vector parse_vector(xmlpp::Element *node,Canvas::Handle canvas);
-       Color parse_color(xmlpp::Element *node,Canvas::Handle canvas);
-       Angle parse_angle(xmlpp::Element *node,Canvas::Handle canvas);
-       String parse_string(xmlpp::Element *node,Canvas::Handle canvas);
-       bool parse_bool(xmlpp::Element *node,Canvas::Handle canvas);
-       Segment parse_segment(xmlpp::Element *node,Canvas::Handle canvas);
+       int parse_integer(xmlpp::Element *node);
+       Vector parse_vector(xmlpp::Element *node);
+       Color parse_color(xmlpp::Element *node);
+       Angle parse_angle(xmlpp::Element *node);
+       String parse_string(xmlpp::Element *node);
+       bool parse_bool(xmlpp::Element *node);
+       Segment parse_segment(xmlpp::Element *node);
        ValueBase parse_list(xmlpp::Element *node,Canvas::Handle canvas);
-       Gradient parse_gradient(xmlpp::Element *node,Canvas::Handle canvas);
-       BLinePoint parse_bline_point(xmlpp::Element *node,Canvas::Handle canvas);
+       Gradient parse_gradient(xmlpp::Element *node);
+       BLinePoint parse_bline_point(xmlpp::Element *node);
 
        Keyframe parse_keyframe(xmlpp::Element *node,Canvas::Handle canvas);
 
@@ -163,9 +160,7 @@ private:
 
        etl::handle<ValueNode_Animated> parse_animated(xmlpp::Element *node,Canvas::Handle canvas);
        etl::handle<ValueNode_Subtract> parse_subtract(xmlpp::Element *node,Canvas::Handle canvas);
-       etl::handle<ValueNode_Animated> parse_timedswap(xmlpp::Element *node,Canvas::Handle canvas);
        etl::handle<LinkableValueNode> parse_linkable_value_node(xmlpp::Element *node,Canvas::Handle canvas);
-       etl::handle<ValueNode_Composite> parse_composite(xmlpp::Element *node,Canvas::Handle canvas);
        etl::handle<ValueNode_DynamicList> parse_dynamic_list(xmlpp::Element *node,Canvas::Handle canvas);
 
 }; // END of CanvasParser