X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbinarypackage.h;h=b8c29de772e45610d9078de5ea0225c8ce961349;hb=HEAD;hp=5b47d645c149710b71eaed051a577c4fa5fc4b03;hpb=b8407de928d2c5421c35474df1c3185fd494ef68;p=builder.git diff --git a/source/binarypackage.h b/source/binarypackage.h deleted file mode 100644 index 5b47d64..0000000 --- a/source/binarypackage.h +++ /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 - { - 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 &); -private: - virtual void do_prepare(); -}; - -#endif