#ifndef STAT_CACHE_H #define STAT_CACHE_H #include #include #include #include class StatCache : public Bu::Singleton { friend class Bu::Singleton; private: StatCache(); virtual ~StatCache(); public: time_t mtime( const Bu::FString &sFileName ); private: typedef Bu::Hash TimeHash; TimeHash hMTime; }; #endif