X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpackagemanager.h;h=d5cfb52e51d5b8493e4adc9d2caf7e4e0319b622;hb=fefa7d1e8ac40136b690e305ce9594af95c678b8;hp=b168d723e174739c3c652f376f7f1cefe407cda2;hpb=d6d1d6ef8f589747b996f223c6c65dd293fedd93;p=builder.git diff --git a/source/packagemanager.h b/source/packagemanager.h index b168d72..d5cfb52 100644 --- a/source/packagemanager.h +++ b/source/packagemanager.h @@ -1,9 +1,10 @@ #ifndef PACKAGEMANAGER_H_ #define PACKAGEMANAGER_H_ -#include #include +#include #include +#include #include class Builder; @@ -15,19 +16,14 @@ packages by name. */ class PackageManager { -public: - typedef std::map PackageMap; - private: - typedef std::list SearchPath; - Builder &builder; - SearchPath pkg_path; - SearchPath pkg_dirs; - SearchPath binpkg_path; - SearchPath binpkg_files; + std::vector pkg_path; + std::vector pkg_dirs; + std::vector binpkg_path; + std::vector binpkg_files; bool no_externals; - PackageMap packages; + std::map packages; Package *main_pkg; std::set not_found; bool env_set; @@ -55,7 +51,7 @@ public: the primary build target. */ Package &get_main_package() const; - const PackageMap &get_packages() const { return packages; } + const std::map &get_packages() const { return packages; } /** Locates a package and loads it if necessary. */ Package *find_package(const std::string &);