WingHexExplorer2/3rdparty/QConsoleWidget/commandhistorymanager.h

17 lines
294 B
C++

#ifndef COMMANDHISTORYMANAGER_H
#define COMMANDHISTORYMANAGER_H
#include <QStringList>
class CommandHistoryManager {
public:
static QStringList load();
static void save(const QStringList &strings);
private:
static QString getHistoryPath();
};
#endif // COMMANDHISTORYMANAGER_H