]> git.tdb.fi Git - builder.git/blobdiff - source/package.cpp
Reorder class members
[builder.git] / source / package.cpp
index c905ee464e7041de6372cbcca0f7e7142e20ef35..b35a0d8f0ab0af20eaa65acd03636592b86493ce 100644 (file)
@@ -1,7 +1,7 @@
 /* $Id$
 
 This file is part of builder
-Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
+Copyright © 2006-2007, 2009  Mikko Rasa, Mikkosoft Productions
 Distributed under the LGPL
 */
 
@@ -16,9 +16,6 @@ using namespace Msp;
 
 #include <iostream>
 
-/**
-Creates a buildable package.
-*/
 Package::Package(Builder &b, const string &n):
        builder(b),
        name(n),
@@ -26,10 +23,6 @@ Package::Package(Builder &b, const string &n):
        use_pkgconfig(true)
 { }
 
-/**
-Collects all directly and indirectly required packages, including the package
-itself.
-*/
 PackageList Package::collect_requires()
 {
        PackageList result;
@@ -46,10 +39,6 @@ PackageList Package::collect_requires()
        return result;
 }
 
-/**
-Processes configuration options that were most likely obtained from the command
-line.
-*/
 void Package::configure(const StringMap &opts, unsigned flag)
 {
        if(conf_done)
@@ -71,7 +60,6 @@ void Package::configure(const StringMap &opts, unsigned flag)
        conf_done=true;
 }
 
-/*** private ***/
 
 Package::Loader::Loader(Package &p):
        pkg(p)