Reformat and clean up the automake files
[synfig.git] / synfig-studio / trunk / src / gtkmm / module.h
index e0c205a..e814bc4 100644 (file)
@@ -1,8 +1,8 @@
 /* === S Y N F I G ========================================================= */
-/*!    \file module.h
+/*!    \file gtkmm/module.h
 **     \brief Template Header
 **
-**     $Id: module.h,v 1.1.1.1 2005/01/07 03:34:36 darco Exp $
+**     $Id$
 **
 **     \legal
 **     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
@@ -40,7 +40,7 @@ namespace studio {
 class Module : public etl::shared_object
 {
        bool status_;
-       
+
 protected:
        Module();
 
@@ -48,18 +48,18 @@ public:
        virtual ~Module();
 
        bool start();
-       
+
        bool stop();
-       
+
        bool get_status()const;
 
 protected:
-       
+
        virtual bool start_vfunc()=0;
        virtual bool stop_vfunc()=0;
 };
 
-       
+
 }; // END of namespace studio
 
 /* === E N D =============================================================== */