]> git.tdb.fi Git - builder.git/blob - source/tarball.h
Replace per-file copyright notices with a single file
[builder.git] / source / tarball.h
1 #ifndef TARBALL_H_
2 #define TARBALL_H_
3
4 #include "filetarget.h"
5
6 class TarBall: public FileTarget
7 {
8 public:
9         TarBall(Builder &, const SourcePackage &, const std::string &);
10         virtual const char *get_type() const { return "TarBall"; }
11         const SourcePackage *get_package() const;
12 private:
13         virtual Action *create_action();
14 };
15
16 #endif