From fdeb33d34a97d062a120f72da919f81d7b1d45bf Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Thu, 20 Mar 2025 22:10:57 +0530 Subject: Move header files to src --- include/CommandParser.hpp | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 include/CommandParser.hpp (limited to 'include/CommandParser.hpp') 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 -#include - -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); -}; -- cgit v1.3.1