rssguard/src/core/dynamicshortcuts.h
Martin Rotter 57f651f970 Cleanups.
2014-01-05 21:36:25 +01:00

25 lines
542 B
C++

#ifndef DYNAMICSHORTCUTS_H
#define DYNAMICSHORTCUTS_H
#include <QList>
class QAction;
class DynamicShortcuts {
public:
// Checks the application settings and then initializes shortcut of
// each action from actions from the settings.
static void load(const QList<QAction*> actions);
// Stores shortcut of each action from actions into the application
// settings.
static void save(const QList<QAction*> actions);
private:
// Constructor.
explicit DynamicShortcuts();
};
#endif // DYNAMICSHORTCUTS_H