summaryrefslogtreecommitdiff
path: root/project2/files/optionsSource.h
diff options
context:
space:
mode:
Diffstat (limited to 'project2/files/optionsSource.h')
-rw-r--r--project2/files/optionsSource.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/project2/files/optionsSource.h b/project2/files/optionsSource.h
index 722d7b9..5cd5250 100644
--- a/project2/files/optionsSource.h
+++ b/project2/files/optionsSource.h
@@ -9,8 +9,11 @@ class FileOptions : public OptionsSource {
FileOptions(const Glib::ustring & file);
void loadInto(const ConfigConsumer & consume) const;
+ bool needReload() const;
+
private:
const Glib::ustring file;
+ mutable time_t loadedAt;
};
#endif