creates a new SMem variable in the database
| 888 | |
| 889 | // creates a new SMem variable in the database |
| 890 | inline void smem_variable_create(agent* thisAgent, smem_variable_key variable_id, int64_t variable_value) |
| 891 | { |
| 892 | soar_module::sqlite_statement* var_create = thisAgent->smem_stmts->var_create; |
| 893 | |
| 894 | var_create->bind_int(1, variable_id); |
| 895 | var_create->bind_int(2, variable_value); |
| 896 | |
| 897 | var_create->execute(soar_module::op_reinit); |
| 898 | } |
| 899 | |
| 900 | |
| 901 | ////////////////////////////////////////////////////////// |
no test coverage detected