vanilla/app/keymap.h

19 lines
276 B
C
Raw Normal View History

2024-05-20 23:25:55 -04:00
#ifndef KEYMAP_H
#define KEYMAP_H
#include <QObject>
#include <map>
class KeyMap : public std::map<Qt::Key, int>
{
public:
KeyMap();
bool load(const QString &filename);
bool save(const QString &filename);
static QString getConfigFilename();
};
#endif