]> git.tdb.fi Git - builder.git/blobdiff - source/sourcepackage.h
Remove most container typedefs and refactor others
[builder.git] / source / sourcepackage.h
index fce58a659fdd925f5b18411ff06035890d6797ca..cb2ab9d46676b0cf3f437281e73326370522e681 100644 (file)
@@ -46,11 +46,7 @@ public:
                void version(const std::string &);
        };
 
-       typedef std::list<Component *> ComponentList;
-
 private:
-       typedef std::list<Feature> FeatureList;
-
        std::string version;
        std::string interface_version;
        std::string description;
@@ -59,9 +55,9 @@ private:
        Msp::FS::Path source_dir;
        const BuildType *build_type;
        Toolchain local_tools;
-       FeatureList features;
+       std::list<Feature> features;
        BuildInfo build_info;
-       ComponentList components;
+       std::list<Component *> components;
        SourceArchiveComponent *source_archive;
        Config config;
        mutable Cache cache;