]> git.tdb.fi Git - builder.git/commitdiff
Clean up some unused cruft
authorMikko Rasa <tdb@tdb.fi>
Sat, 14 Jul 2012 13:26:58 +0000 (16:26 +0300)
committerMikko Rasa <tdb@tdb.fi>
Sun, 15 Jul 2012 14:05:48 +0000 (17:05 +0300)
source/builder.h
source/sourcepackage.h

index 90380a696b81ab3018746afc82b8c999ef4b16b1..4192fe767a7dfdc788a050298d6ead0dbbaad2e9 100644 (file)
@@ -22,7 +22,6 @@ class Config;
 class FileTarget;
 class Package;
 class SourcePackage;
-class VirtualTarget;
 
 /**
 The main application class.  Controls and owns everything.  Rules the world.
@@ -57,7 +56,6 @@ private:
 
 public:
        typedef std::map<std::string, Target *> TargetMap;
-       typedef std::list<Target *> TargetList;
 
 private:
        typedef std::map<std::string, StringMap> ProfileTemplateMap;
@@ -127,7 +125,6 @@ public:
        /** Adds a target to both the target map and the new target queue.  Called
        from Target constructor. */
        void add_target(Target *);
-       void register_path(const Msp::FS::Path &, FileTarget *);
 
        void problem(const std::string &, const std::string &);
 
index fa1492d61605862b4eb44f54706f03b229c957ab..cd576fef26a03cd8c9f4463668e1984670441109 100644 (file)
@@ -59,7 +59,6 @@ private:
 
 public:
        SourcePackage(Builder &, const std::string &, const Msp::FS::Path &);
-       const std::string &get_name() const { return name; }
        const std::string &get_version() const { return version; }
        const std::string &get_description() const { return description; }
        const Msp::FS::Path &get_source() const { return source; }
@@ -68,7 +67,6 @@ public:
        const ComponentList &get_components() const { return components; }
        const Config &get_config() const { return config; }
        const BuildInfo &get_build_info() const { return build_info; }
-       const BuildInfo &get_exported_binfo() const { return export_binfo; }
        Builder &get_builder() const { return builder; }
 
        LibMode get_library_mode() const;