From: Mikko Rasa Date: Sun, 15 Jul 2012 17:53:55 +0000 (+0300) Subject: Comment changes X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=a116ad9af4a6a75093f6e1c3603d16b397833154;p=builder.git Comment changes --- diff --git a/source/builder.h b/source/builder.h index 4b0bee3..cd6bf16 100644 --- a/source/builder.h +++ b/source/builder.h @@ -25,7 +25,8 @@ class Package; class SourcePackage; /** -The main application class. Controls and owns everything. Rules the world. +The main application class. Handles command line options and supervises the +build process. */ class Builder: public Msp::RegisteredApplication { diff --git a/source/objectfile.h b/source/objectfile.h index 2e9b6e1..af7cc22 100644 --- a/source/objectfile.h +++ b/source/objectfile.h @@ -22,13 +22,9 @@ public: virtual const char *get_type() const { return "ObjectFile"; } SourceFile &get_source() const { return source; } - /** Processes as many new dependences as possible. Some may be created on - the fly and can't be processed until their own dependencies are ready. In - such cases this function needs to be called again. */ virtual void find_depends(); private: - /** Recursively looks for header targets and adds them as dependencies. */ void find_depends(FileTarget *); };