X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbinarypackage.h;h=b8c29de772e45610d9078de5ea0225c8ce961349;hb=HEAD;hp=13e2fd85ddc7a65397654400a9ece95913d308be;hpb=08015c0f27f377fcd4aa186fca5bd8cf70723a5a;p=builder.git diff --git a/source/binarypackage.h b/source/binarypackage.h deleted file mode 100644 index 13e2fd8..0000000 --- a/source/binarypackage.h +++ /dev/null @@ -1,36 +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(); - void header(const std::string &); - }; - -private: - typedef std::list HeaderList; - - Msp::FS::Path base_path; - HeaderList headers; - -public: - BinaryPackage(Builder &, const std::string &); - - static BinaryPackage *from_flags(Builder &, const std::string &, const std::vector &); -private: - virtual void do_prepare(); -}; - -#endif