X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbinarycomponent.h;h=ef145da49da7b6bdea0649412b6782318641d182;hb=f0c0d720edc01f5faa72bb4ff4bf655445842678;hp=7c8453420b2cd1cbef60f9cf53829507898e577a;hpb=bde362811368647047f3ca13bdec596f092ecffe;p=builder.git diff --git a/source/binarycomponent.h b/source/binarycomponent.h index 7c84534..ef145da 100644 --- a/source/binarycomponent.h +++ b/source/binarycomponent.h @@ -22,13 +22,11 @@ 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; }