Lines Matching refs:CommandLine
22 #include "CommandLine.h"
125 CommandLine::CommandType type = GetCommandType(jsonData["type"].AsString());
126 if (type == CommandLine::CommandType::INVALID) {
135 std::unique_ptr<CommandLine> commandLine =
171 CommandLine::CommandType CommandLineInterface::GetCommandType(std::string name) const
173 CommandLine::CommandType type = CommandLine::CommandType::INVALID;
175 type = CommandLine::CommandType::SET;
177 type = CommandLine::CommandType::GET;
179 type = CommandLine::CommandType::ACTION;
220 std::unique_ptr<CommandLine> command =
221 CommandLineFactory::CreateCommandLine(key, CommandLine::CommandType::SET, val, *socket);
227 const std::unique_ptr<CommandLine>& command) const
259 CommandLine::CommandType commandType = GetCommandType(type);
260 std::unique_ptr<CommandLine> commandLine =