aboutsummaryrefslogtreecommitdiff
path: root/src/filetarget.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/filetarget.h')
-rw-r--r--src/filetarget.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/filetarget.h b/src/filetarget.h
deleted file mode 100644
index c78c2fd..0000000
--- a/src/filetarget.h
+++ /dev/null
@@ -1,32 +0,0 @@
1#ifndef FILE_TARGET_H
2#define FILE_TARGET_H
3
4#include <stdint.h>
5#include <map>
6#include <sys/types.h>
7#include <sys/stat.h>
8#include <unistd.h>
9#include "target.h"
10
11class FileTarget : public Target
12{
13public:
14 FileTarget( const char *sName );
15 virtual ~FileTarget();
16
17 virtual void debug();
18
19 void addInputDir( const char *sDir );
20
21 virtual void check( class Builder &bld );
22 virtual void clean( class Builder &bld );
23
24 time_t getTime( class Builder &bld, std::string str );
25 void updateTime( std::string str );
26
27private:
28 std::map<std::string, time_t> mTimes;
29
30};
31
32#endif