Removed unimplemented GUI actions.
[tagua/yd.git] / src / actioncollection.h
blob40f2f640227b29a0eb5ed2ffa4321e15870b7808
1 #ifndef ACTIONCOLLECTION_H
2 #define ACTIONCOLLECTION_H
4 #include <boost/function.hpp>
5 #include <QList>
6 #include <QHash>
7 #include <QObject>
9 class QAction;
11 class ActionCollection : public QObject {
12 Q_OBJECT
13 QList<QAction*> m_actions;
14 public:
15 ActionCollection();
17 void add(QAction* action);
18 QList<QAction*> actions() const;
21 #endif // ACTIONCOLLECTION_H