Commander-API
V2.0.0
Commander-API is a C++ API, that parses character based commands.
|
Structure for command data. More...
#include <Commander-API.hpp>
Public Attributes | |
uint16_t | place |
struct API_t * | left |
struct API_t * | right |
const char * | name |
const char * | desc |
void(* | func )(char *, commandResponse *response) |
Structure for command data.
Every command will get a structure like this. This structure is used to store your commands in a balanced binary tree.
const char* Commander::API_t::desc |
void(* Commander::API_t::func) (char *, commandResponse *response) |
struct API_t* Commander::API_t::left |
const char* Commander::API_t::name |
uint16_t Commander::API_t::place |
struct API_t* Commander::API_t::right |