]> git.tdb.fi Git - builder.git/blob - source/file.h
A bunch of minor cleanups
[builder.git] / source / file.h
1 #ifndef FILE_H_
2 #define FILE_H_
3
4 #include "filetarget.h"
5
6 /**
7 Just an arbitrary file.  No special meaning attached.
8 */
9 class File: public FileTarget
10 {
11 public:
12         File(Builder &b, const Msp::FS::Path &t): FileTarget(b, t) { }
13         File(Builder &b, const SourcePackage &p, const Msp::FS::Path &t): FileTarget(b, p, t) { }
14
15         virtual const char *get_type() const { return "File"; }
16 };
17
18 #endif