summaryrefslogtreecommitdiffstats
path: root/src/watch.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/watch.hpp')
-rw-r--r--src/watch.hpp23
1 files changed, 11 insertions, 12 deletions
diff --git a/src/watch.hpp b/src/watch.hpp
index d420458..9c97b9e 100644
--- a/src/watch.hpp
+++ b/src/watch.hpp
@@ -24,20 +24,19 @@ namespace monitoring
*/
class Watch
{
- public:
- Watch() = default;
- Watch(const Watch&) = default;
- Watch(Watch&&) = default;
- Watch& operator=(const Watch&) = default;
- Watch& operator=(Watch&&) = default;
- virtual ~Watch() = default;
+ public:
+ Watch() = default;
+ Watch(const Watch&) = default;
+ Watch(Watch&&) = default;
+ Watch& operator=(const Watch&) = default;
+ Watch& operator=(Watch&&) = default;
+ virtual ~Watch() = default;
- /** @brief Start the watch. */
- virtual void start() = 0;
-
- /** @brief Invoke the callback associated with the watch. */
- virtual void callback(Context ctx) = 0;
+ /** @brief Start the watch. */
+ virtual void start() = 0;
+ /** @brief Invoke the callback associated with the watch. */
+ virtual void callback(Context ctx) = 0;
};
} // namespace monitoring
OpenPOWER on IntegriCloud