]> git.tdb.fi Git - builder.git/blob - source/tarballcomponent.h
Split Component into several subclasses
[builder.git] / source / tarballcomponent.h
1 #ifndef TARBALLCOMPONENT_H_
2 #define TARBALLCOMPONENT_H_
3
4 #include "component.h"
5
6 class TarballComponent: public Component
7 {
8 public:
9         TarballComponent(SourcePackage &, const std::string &);
10
11         virtual void create_targets() const;
12 };
13
14 #endif