]> git.tdb.fi Git - builder.git/blobdiff - source/component.cpp
Reorder class members
[builder.git] / source / component.cpp
index 26a0ab4b7246d5c24eccd6f26c494fa0fea54335..dcbaf373e19c0c16360fbfa468988575767fd5ff 100644 (file)
@@ -1,7 +1,7 @@
 /* $Id$
 
 This file is part of builder
-Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
+Copyright © 2006-200 Mikko Rasa, Mikkosoft Productions
 Distributed under the LGPL
 */
 
@@ -33,9 +33,6 @@ Component::Component(SourcePackage &p, Type t, const string &n):
        deflt(true)
 { }
 
-/**
-Prepares the build information for building.
-*/
 void Component::create_build_info()
 {
        build_info.add(pkg.get_build_info());
@@ -81,9 +78,6 @@ void Component::create_build_info()
        build_info.unique();
 }
 
-/**
-Creates all targets needed for building this component.
-*/
 void Component::create_targets() const
 {
        Builder &builder=pkg.get_builder();
@@ -121,7 +115,7 @@ void Component::create_targets() const
 
        if(build_exe)
        {
-               Executable    *exe=0;
+               Executable *exe=0;
                StaticLibrary *slib=0;
                if(type==LIBRARY)
                {
@@ -155,9 +149,6 @@ void Component::create_targets() const
                inst_tgt->add_depend(new Install(builder, pkg, **i));
 }
 
-/**
-Collects all files belonging to the component.
-*/
 PathList Component::collect_source_files() const
 {
        PathList files;