]> git.tdb.fi Git - builder.git/blobdiff - source/builder.h
Add comments
[builder.git] / source / builder.h
index 786b48c37f8f1752a8fbe17630d80aeacf5196e1..1016498f08b736e3517e45f269079e78b76cc13f 100644 (file)
 class Analyzer;
 class Package;
 
+/**
+The main application class.  Controls and owns everything.  Rules the world.
+*/
 class Builder: public Msp::Application
 {
 public:
        Builder(int, char **);
-       unsigned get_verbose() const { return verbose; }
-       bool     get_dry_run() const { return dry_run; }
+       unsigned get_verbose() const   { return verbose; }
+       bool     get_dry_run() const   { return dry_run; }
        bool     get_build_all() const { return build_all; }
        Package  *get_package(const std::string &);
        Target   *get_target(const std::string &);