summaryrefslogtreecommitdiff
path: root/CommandTerminal/CmdAttention.cpp
blob: 892e891ff530faa9dbeb1a984b30bbd430852ea8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "CmdAttention.h"

CmdAttention::CmdAttention(mDot* dot) : Command(dot, "Attention", "AT", "Attention") 
{
    _help = std::string(text()) + ": " + std::string(desc());
}

CmdAttention::CmdAttention(mDot* dot, const char* name, const char* text, const char* desc) : Command(dot, name, text, desc)
{
    
}

uint32_t CmdAttention::action(std::vector<std::string> args) {
    return 0;
}