]> git.tdb.fi Git - builder.git/blobdiff - source/component.h
Target::prepare shouldn't be virtual
[builder.git] / source / component.h
index 561a25091381bb4eb5838d1aa0b34b4f9fb89793..5f1332fcb40f8a947dc858b0a2ff0cce0f3d1935 100644 (file)
@@ -54,6 +54,7 @@ protected:
 
 public:
        Component(SourcePackage &, Type, const std::string &);
+
        const SourcePackage &get_package() const { return pkg; }
        Type get_type() const { return type; }
        const std::string &get_name() const { return name; }
@@ -77,6 +78,4 @@ protected:
        PathList collect_source_files() const;
 };
 
-typedef std::list<Component> ComponentList;
-
 #endif