openbox/src/actions.hh

28 lines
364 B
C++
Raw Normal View History

// -*- 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