Interroga valore variabile stringa nello storage.
Sintassi |
string get_string(const string &in name) |
---|---|
name |
Nome della variabile |
Risultato |
Ritorna valore della variabile trovata, 0 altrimenti |
Esempio di utilizzo:
bool execute(shell::object @shell, const string &in cmdline) { // Interroga valore di "my_var" string v = shell.storage.get_string("my_var"); } |