X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbinarypackage.h;h=b8c29de772e45610d9078de5ea0225c8ce961349;hb=HEAD;hp=088c3e1eac2264dc94cf3a96de0a3e11b4947e30;hpb=592fa2bca4e973678cbdc86802fe1c151b40e04d;p=builder.git diff --git a/source/binarypackage.h b/source/binarypackage.h deleted file mode 100644 index 088c3e1..0000000 --- a/source/binarypackage.h +++ /dev/null @@ -1,28 +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 - { - public: - Loader(BinaryPackage &); - private: - void build_info(); - }; - - BinaryPackage(Builder &, const std::string &); - - static BinaryPackage *from_flags(Builder &, const std::string &, const std::vector &); -private: - virtual void do_prepare(); -}; - -#endif