aboutsummaryrefslogtreecommitdiff
path: root/src/conditionplugger.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/conditionplugger.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/conditionplugger.h b/src/conditionplugger.h
new file mode 100644
index 0000000..71fa7e3
--- /dev/null
+++ b/src/conditionplugger.h
@@ -0,0 +1,17 @@
1#ifndef CONDITION_PLUGGER_H
2#define CONDITION_PLUGGER_H
3
4#include "condition.h"
5#include <bu/plugger.h>
6#include <bu/singleton.h>
7
8class ConditionPlugger : public Bu::Plugger<Condition>,
9 public Bu::Singleton<ConditionPlugger>
10{
11friend class Bu::Singleton<ConditionPlugger>;
12private:
13 ConditionPlugger();
14 virtual ~ConditionPlugger();
15};
16
17#endif