]> git.tdb.fi Git - builder.git/blobdiff - source/binarycomponent.h
Remove most container typedefs and refactor others
[builder.git] / source / binarycomponent.h
index 3a6affd18e32c20ddc95f131a04e101aa034bd6d..c31fff2582eff09ee327ad4021fd3c49b97cea7e 100644 (file)
@@ -22,19 +22,17 @@ public:
        };
 
 private:
-       typedef std::list<const Component *> UseList;
-
        Type type;
-       UseList uses;
+       std::list<const Component *> uses;
 
 public:
        BinaryComponent(SourcePackage &, const std::string &, Type);
 
        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