mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
16 lines
269 B
C++
16 lines
269 B
C++
|
#pragma once
|
||
|
|
||
|
#include <QString>
|
||
|
|
||
|
namespace chatterino {
|
||
|
class CommandManager
|
||
|
{
|
||
|
public:
|
||
|
CommandManager() = delete;
|
||
|
|
||
|
void execCommand(QString command);
|
||
|
void selectSplitRelative(int dx, int dy);
|
||
|
void moveSplitRelative(int dx, int dy);
|
||
|
};
|
||
|
}
|