summaryrefslogtreecommitdiff
path: root/CommandTerminal/CmdFactoryDefault.h
blob: 8957ae35a8306ada9f6a30484377c18fee5ffdf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __CmdFactoryDefault_H__
#define __CmdFactoryDefault_H__

#include "Command.h"

class CmdFactoryDefault : public Command {

public:

    CmdFactoryDefault(mDot* dot);
    virtual uint32_t action(std::vector<std::string> args);

private:
};

#endif // __CmdFactoryDefault_H__