]> git.tdb.fi Git - builder.git/blobdiff - source/binarypackage.h
Refactor transitive dependencies to work on all targets
[builder.git] / source / binarypackage.h
diff --git a/source/binarypackage.h b/source/binarypackage.h
deleted file mode 100644 (file)
index 5b47d64..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-#ifndef BINARYPACKAGE_H_
-#define BINARYPACKAGE_H_
-
-#include "package.h"
-
-/**
-Represents a package that is installed on the system, but can't be built by
-Builder.
-*/
-class BinaryPackage: public Package
-{
-public:
-       class Loader: public Msp::DataFile::DerivedObjectLoader<BinaryPackage, Package>
-       {
-       public:
-               Loader(BinaryPackage &);
-       private:
-               void build_info();
-       };
-
-private:
-       Msp::FS::Path base_path;
-
-public:
-       BinaryPackage(Builder &, const std::string &);
-
-       static BinaryPackage *from_flags(Builder &, const std::string &, const std::vector<std::string> &);
-private:
-       virtual void do_prepare();
-};
-
-#endif