diff options
author | Max Kellermann <max@duempel.org> | 2013-04-08 22:32:19 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-04-08 23:11:35 +0200 |
commit | 484841fc9e1e038a04c5c52cf1d9443fd7e337fa (patch) | |
tree | 8fcb694347dae8c22f1f06927ccc86aebad7937f /src/StateFile.hxx | |
parent | 8052c76489aa827bc1c82a72d7dd0c4da411e67c (diff) |
StateFile: make AutoWrite() private
Diffstat (limited to 'src/StateFile.hxx')
-rw-r--r-- | src/StateFile.hxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/StateFile.hxx b/src/StateFile.hxx index 9ec97d518..a81b8d91f 100644 --- a/src/StateFile.hxx +++ b/src/StateFile.hxx @@ -47,9 +47,11 @@ public: void Read(); void Write(); - void AutoWrite(); private: + void AutoWrite(); + + /* virtual methods from TimeoutMonitor */ virtual bool OnTimeout() override; }; |