X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbinarycomponent.h;h=ef145da49da7b6bdea0649412b6782318641d182;hb=1ed833343bc83b83c5f61cbfd74423bbba677a04;hp=3a6affd18e32c20ddc95f131a04e101aa034bd6d;hpb=35f2979869bff43706f3163ec0979c7084aaa3c4;p=builder.git diff --git a/source/binarycomponent.h b/source/binarycomponent.h index 3a6affd..ef145da 100644 --- a/source/binarycomponent.h +++ b/source/binarycomponent.h @@ -22,19 +22,17 @@ public: }; private: - typedef std::list UseList; - Type type; - UseList uses; + std::vector uses; public: - BinaryComponent(SourcePackage &, const std::string &, Type); + BinaryComponent(SourcePackage &p, const std::string &n, Type t): Component(p, n), type(t) { } Type get_type() const { return type; } - virtual void create_build_info(); - virtual void update_exported_build_info(BuildInfo &) const; - virtual void create_targets() const; + void create_build_info() override; + void update_exported_build_info(BuildInfo &) const override; + void create_targets() const override; }; #endif