#include <vector>
#include <string>
Go to the source code of this file.
|
namespace | HSEPData |
| Offers a database access subsystem.
|
|
|
#define | SETPARAM(destination, type, value) destination.push_back(make_pair(type,value)) |
| Includes a new "value" of type "type" in the "destination" parameter vector.
|
|
#define | STRPARAM(destination, value) destination.push_back(make_pair(DBT_String,value)) |
| Includes a new "value" of string type in the "destination" parameter vector.
|
|
#define | INTPARAM(destination, value) destination.push_back(make_pair(DBT_Number,to_string(value))) |
| Includes a new "value" of numeric type in the "destination" parameter vector.
|
|
#define INTPARAM |
( |
|
destination, |
|
|
|
value |
|
) |
| destination.push_back(make_pair(DBT_Number,to_string(value))) |
Includes a new "value" of numeric type in the "destination" parameter vector.
Definition at line 62 of file DBTypes.h.
#define SETPARAM |
( |
|
destination, |
|
|
|
type, |
|
|
|
value |
|
) |
| destination.push_back(make_pair(type,value)) |
Includes a new "value" of type "type" in the "destination" parameter vector.
Definition at line 50 of file DBTypes.h.
#define STRPARAM |
( |
|
destination, |
|
|
|
value |
|
) |
| destination.push_back(make_pair(DBT_String,value)) |
Includes a new "value" of string type in the "destination" parameter vector.
Definition at line 56 of file DBTypes.h.