Implemented variant actions.
[tagua/yd.git] / src / actioncollection.h
blob80cfd30591d70fed5438aa51ed10ba144b4bc557
1 #ifndef ACTIONCOLLECTION_H
2 #define ACTIONCOLLECTION_H
4 #include <QList>
5 #include <QObject>
7 class QAction;
9 class ActionCollection : public QObject {
10 Q_OBJECT
11 QList<QAction*> m_actions;
12 public:
13 ActionCollection();
15 void add(QAction* action);
16 QList<QAction*> actions() const;
19 #endif // ACTIONCOLLECTION_H