diff options
Diffstat (limited to 'src/actions.hh')
| -rw-r--r-- | src/actions.hh | 27 |
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 |
