CXXFLAGS is for users, use AM_CXXFLAGS instead
[synfig.git] / synfig-core / trunk / src / modules / mod_geometry / star.cpp
index a85aa2c..4dfc358 100644 (file)
@@ -1,8 +1,10 @@
-/*! ========================================================================
-** Synfig
-** Template File
-** $Id: star.cpp,v 1.1.1.1 2005/01/04 01:23:10 darco Exp $
+/* === S Y N F I G ========================================================= */
+/*!    \file star.cpp
+**     \brief Template Header
 **
+**     $Id$
+**
+**     \legal
 **     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
 **
 **     This package is free software; you can redistribute it and/or
@@ -14,6 +16,7 @@
 **     but WITHOUT ANY WARRANTY; without even the implied warranty of
 **     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 **     General Public License for more details.
+**     \endlegal
 **
 ** === N O T E S ===========================================================
 **
@@ -58,7 +61,7 @@ SYNFIG_LAYER_SET_NAME(Star,"star");
 SYNFIG_LAYER_SET_LOCAL_NAME(Star,_("Star"));
 SYNFIG_LAYER_SET_CATEGORY(Star,_("Geometry"));
 SYNFIG_LAYER_SET_VERSION(Star,"0.1");
-SYNFIG_LAYER_SET_CVS_ID(Star,"$Id: star.cpp,v 1.1.1.1 2005/01/04 01:23:10 darco Exp $");
+SYNFIG_LAYER_SET_CVS_ID(Star,"$Id$");
 
 /* === P R O C E D U R E S ================================================= */
 
@@ -80,7 +83,7 @@ Star::sync()
 {
        Angle dist_between_points(Angle::rot(1)/float(points));
        std::vector<Point> vector_list;
-       
+
        int i;
        for(i=0;i<points;i++)
        {
@@ -143,7 +146,7 @@ Star::get_param(const String& param)const
        EXPORT_VERSION();
 
        if(param=="vector_list")
-               return ValueBase();     
+               return ValueBase();
 
        return Layer_Polygon::get_param(param);
 }