diff options
Diffstat (limited to 'project2/cli/claOptions.h')
-rw-r--r-- | project2/cli/claOptions.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/project2/cli/claOptions.h b/project2/cli/claOptions.h index c669004..3f13b4b 100644 --- a/project2/cli/claOptions.h +++ b/project2/cli/claOptions.h @@ -8,13 +8,13 @@ class CommandLineArguments : public OptionsSource { typedef boost::function<void(const char * const)> Others; CommandLineArguments(int c, const char * const * v, const Others &); void loadInto(const ConfigConsumer & consume, const Options::CurrentPlatform & platform) const; - bool needReload() const; + boost::posix_time::ptime modifiedTime() const override; private: const int argc; const char * const * argv; const Others others; - mutable time_t loadedAt; + const boost::posix_time::ptime createdAt; }; #endif |