summaryrefslogtreecommitdiffstats
path: root/src/common/HBHandle.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/HBHandle.h')
-rw-r--r--src/common/HBHandle.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/common/HBHandle.h b/src/common/HBHandle.h
new file mode 100644
index 000000000..a972a93c6
--- /dev/null
+++ b/src/common/HBHandle.h
@@ -0,0 +1,11 @@
+// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
+// vim: ts=8 sw=2 smarttab
+
+#pragma once
+
+class HBHandle {
+public:
+ virtual void reset_tp_timeout() = 0;
+ virtual void suspend_tp_timeout() = 0;
+ virtual ~HBHandle() {}
+};