This class implements a TShell command.
Note: Up to 10 different instance of this command can be instantiated - but each instance MUST have a different database number. The database number specified by specifying the actual command name, e.g. 'dm0' is database number 0, 'dm1' is database number 1, etc.
|
Public Types inherited from Cpl::TShell::Command |
enum | Result_T {
eSUCCESS = 0
, eERROR_BAD_SYNTAX = 1
, eERROR_INVALID_CMD = 2
, eERROR_IO = 3
,
eERROR_MISSING_ARGS = 4
, eERROR_EXTRA_ARGS = 5
, eERROR_INVALID_ARGS = 6
, eERROR_FAILED = 7
} |
| Possible result codes when executing a command. More...
|
|
static void | remove_ (Item *itemPtr) noexcept |
| Helper method to do the proper 'clean-up' for the multiple-containers-error-trap when removing an item from a container.
|
|
void * | m_prevPtr_ |
| The previous link field.
|
|
void * | m_nextPtr_ |
| The link field.
|
|
void * | m_inListPtr_ |
| Debug field.
|
|
Protected Types inherited from Cpl::TShell::Cmd::Command |
enum | CondResult_T { eFALSE
, eTRUE
, eERROR
} |
| Result when processing a conditional statement. More...
|
|
enum | Balance_T { eLEFT_ =-1
, eEVEN_ =0
, eRIGHT_ =1
} |
| Magic values for balance status. More...
|
|
Protected Member Functions inherited from Cpl::TShell::Cmd::Command |
| Command (Cpl::Container::Map< Cpl::TShell::Command > &commandList, const char *verb, Security::Permission_T minPermLevel=OPTION_TSHELL_CMD_COMMAND_DEFAULT_PERMISSION_LEVEL) noexcept |
| Constructor.
|
|
const Cpl::Container::Key & | getKey () const noexcept |
| See Cpl::Container::Key.
|
|
Protected Member Functions inherited from Cpl::TShell::Command |
| Command () |
| Constructor.
|
|
| MapItem () |
| Constructor.
|
|
| MapItem (const char *ignoreThisParameter_usedToCreateAUniqueConstructor) |
| Constructor -->special constructor to allow a Map to be statically allocated.
|
|
void | initialize (MapItem *parent) |
| Initialize the node when being inserted in the tree.
|
|
MapItem * | getParent () const |
| Get tree connection/pointer.
|
|
void | setParent (MapItem *n) |
| Set tree connection/pointer.
|
|
MapItem * | getLeft () const |
| Get tree connection/pointer.
|
|
void | setLeft (MapItem *n) |
| Set tree connection/pointer.
|
|
MapItem * | getRight () const |
| Get tree connection/pointer.
|
|
void | setRight (MapItem *n) |
| Set tree connection/pointer.
|
|
| DictItem () |
| Constructor.
|
|
| DictItem (const char *ignoreThisParameter_usedToCreateAUniqueConstructor) |
| Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated.
|
|
| ExtendedItem () |
| Constructor.
|
|
| ExtendedItem (const char *ignoreThisParameter_usedToCreateAUniqueConstructor) |
| Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated.
|
|
| Item () |
| Constructor.
|
|
| Item (const char *) |
| Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated.
|
|