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