This commit is contained in:
fourtf
2018-06-26 13:24:55 +02:00
parent ec04f10895
commit c9722b9780
301 changed files with 0 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
#include "command.hpp"
namespace chatterino {
namespace controllers {
namespace commands {
// command
Command::Command(const QString &_text)
{
int index = _text.indexOf(' ');
if (index == -1) {
this->name = _text;
return;
}
this->name = _text.mid(0, index).trimmed();
this->func = _text.mid(index + 1).trimmed();
}
Command::Command(const QString &_name, const QString &_func)
: name(_name.trimmed())
, func(_func.trimmed())
{
}
QString Command::toString() const
{
return this->name + " " + this->func;
}
} // namespace commands
} // namespace controllers
} // namespace chatterino