X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbinarycomponent.h;h=ef145da49da7b6bdea0649412b6782318641d182;hb=f0c0d720edc01f5faa72bb4ff4bf655445842678;hp=c31fff2582eff09ee327ad4021fd3c49b97cea7e;hpb=3938f8030b1f62802decce19777ce70fdafaff10;p=builder.git diff --git a/source/binarycomponent.h b/source/binarycomponent.h index c31fff2..ef145da 100644 --- a/source/binarycomponent.h +++ b/source/binarycomponent.h @@ -23,10 +23,10 @@ public: private: Type type; - std::list 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; }