diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-03-20 22:10:57 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-03-20 22:10:57 +0530 |
| commit | fdeb33d34a97d062a120f72da919f81d7b1d45bf (patch) | |
| tree | 91165d5e3e718d4008bf73259f45d1705965f4b0 /include/CommandParser.hpp | |
| parent | 9e3474b5d8ee4afdd9c03cfb4a151ffebfca36b7 (diff) | |
| download | null-browser-fdeb33d34a97d062a120f72da919f81d7b1d45bf.tar.gz null-browser-fdeb33d34a97d062a120f72da919f81d7b1d45bf.zip | |
Move header files to src
Diffstat (limited to 'include/CommandParser.hpp')
| -rw-r--r-- | include/CommandParser.hpp | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/include/CommandParser.hpp b/include/CommandParser.hpp deleted file mode 100644 index 9197df5..0000000 --- a/include/CommandParser.hpp +++ /dev/null @@ -1,29 +0,0 @@ -#pragma once - -#include <QtCore/qcontainerfwd.h> -#include <QtCore> - -enum CommandType { - Noop, - LuaEval, - Open, - TabOpen, - TabNext, - TabPrev, - TabSelect, -}; - -struct Cmd { - CommandType command; - QString argsString; - QString rawInput; -}; - -class CommandParser { -public: - CommandParser(); - Cmd parse(QString command); - -private: - CommandType toCommandType(QString cmd); -}; |
