summaryrefslogtreecommitdiff
path: root/src/actions.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-12-04 04:11:24 +0000
committerDana Jansens <danakj@orodu.net>2002-12-04 04:11:24 +0000
commit23a7f188297ba3cef1bf13f1be9407ff6eb9bd62 (patch)
tree1dd2de425e5ca2994f63b0cbc2756456d8d28c40 /src/actions.hh
parent24924367f9486b29b8b9fd024781ccb5f9e0e276 (diff)
add a skeletal OBActions class for user actions
Diffstat (limited to 'src/actions.hh')
-rw-r--r--src/actions.hh27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/actions.hh b/src/actions.hh
new file mode 100644
index 00000000..1013e527
--- /dev/null
+++ b/src/actions.hh
@@ -0,0 +1,27 @@
+// -*- mode: C++; indent-tabs-mode: nil; -*-
+#ifndef __actions_hh
+#define __actions_hh
+
+/*! @file actions.hh
+ @brief The action interface for user-available actions
+*/
+
+namespace ob {
+
+//! The action interface for user-available actions
+/*!
+*/
+class OBActions {
+public:
+
+private:
+
+public:
+ OBActions();
+ virtual ~OBActions();
+
+};
+
+}
+
+#endif // __actions_hh