diff options
author | Mike Buland <eichlan@xagasoft.com> | 2010-01-05 00:22:20 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2010-01-05 00:22:20 +0000 |
commit | e809677b1d5a02b93a0be7a9fce8a6b67d0d91be (patch) | |
tree | 6fcef1ec9a16c7a14e14181341eb9b775a32e086 /src/statcache.h | |
parent | 6470ee1a051a4e4fac014162c0d9632487093d08 (diff) | |
download | build-e809677b1d5a02b93a0be7a9fce8a6b67d0d91be.tar.gz build-e809677b1d5a02b93a0be7a9fce8a6b67d0d91be.tar.bz2 build-e809677b1d5a02b93a0be7a9fce8a6b67d0d91be.tar.xz build-e809677b1d5a02b93a0be7a9fce8a6b67d0d91be.zip |
Turns out the statcache broke other things, and didn't help at all. It's dead
now...
Diffstat (limited to 'src/statcache.h')
-rw-r--r-- | src/statcache.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/statcache.h b/src/statcache.h deleted file mode 100644 index e081ec3..0000000 --- a/src/statcache.h +++ /dev/null | |||
@@ -1,24 +0,0 @@ | |||
1 | #ifndef STAT_CACHE_H | ||
2 | #define STAT_CACHE_H | ||
3 | |||
4 | #include <bu/hash.h> | ||
5 | #include <bu/singleton.h> | ||
6 | #include <bu/fstring.h> | ||
7 | #include <time.h> | ||
8 | |||
9 | class StatCache : public Bu::Singleton<StatCache> | ||
10 | { | ||
11 | friend class Bu::Singleton<StatCache>; | ||
12 | private: | ||
13 | StatCache(); | ||
14 | virtual ~StatCache(); | ||
15 | |||
16 | public: | ||
17 | time_t mtime( const Bu::FString &sFileName ); | ||
18 | |||
19 | private: | ||
20 | typedef Bu::Hash<Bu::FString, time_t> TimeHash; | ||
21 | TimeHash hMTime; | ||
22 | }; | ||
23 | |||
24 | #endif | ||