|
|
@ -55,10 +55,10 @@ namespace {
|
|
|
|
|
|
|
|
|
|
|
|
//! List of all command identifiers and corresponding strings
|
|
|
|
//! List of all command identifiers and corresponding strings
|
|
|
|
static const CmdIdAndString cmdIdAndString[] = {
|
|
|
|
static const CmdIdAndString cmdIdAndString[] = {
|
|
|
|
add, "add",
|
|
|
|
{ add, "add" },
|
|
|
|
set, "set",
|
|
|
|
{ set, "set" },
|
|
|
|
del, "del",
|
|
|
|
{ del, "del" },
|
|
|
|
invalidCmdId, "invalidCmd" // End of list marker
|
|
|
|
{ invalidCmdId, "invalidCmd" } // End of list marker
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// Return a command Id for a command string
|
|
|
|
// Return a command Id for a command string
|
|
|
|