]> git.tdb.fi Git - builder.git/blobdiff - source/action.h
Improve file target naming
[builder.git] / source / action.h
index a80c7db4ae6865311ed8a21ff0036d95333e4367..afe46976f7402a6d7eae75da99a03bb321b5a13d 100644 (file)
@@ -1,10 +1,3 @@
-/* $Id$
-
-This file is part of builder
-Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef ACTION_H_
 #define ACTION_H_
 
@@ -22,19 +15,24 @@ public:
        /// Emitted when the action has finished
        sigc::signal<void> signal_done;
        
-       /**
-       Checks whether the action is done and emits signal_done if it is.
-
-       @return  0 on successful completion, 1 on error, -1 if the action is still
-                executing
-       */
-       virtual int check()=0;
-       
-       virtual ~Action() { }
 protected:
        Builder &builder;
        
        Action(Builder &b): builder(b) { }
+public:
+       virtual ~Action() { }
+
+       /**
+       Checks whether the action is done and emits signal_done if it is.  Returns 0
+       if the action has completed successfully, 1 if an error was encountered and
+       -1 if it is still executing.
+       */
+       virtual int check() = 0;
+       
+protected:
+       /**
+       Annouces the action by printing out the package name, tool and target name.
+       */
        void announce(const std::string &, const std::string &, const std::string &);
 };