OpenM++ runtime library (libopenm)
|
entity_dic table row. More...
Public Member Functions | |
EntityDicRow (int i_modelId, int i_entityId) | |
create row with supplied key field values. | |
EntityDicRow (void) | |
create row with default empty field values. | |
Static Public Member Functions | |
static bool | isKeyLess (const EntityDicRow &i_left, const EntityDicRow &i_right) |
less comparator by unique key: model id, model entity id. | |
static bool | isKeyEqual (const EntityDicRow &i_left, const EntityDicRow &i_right) |
equal comparator by primary key: model id, entity id. | |
static vector< EntityDicRow >::const_iterator | byKey (int i_modelId, int i_entityId, const vector< EntityDicRow > &i_rowVec) |
find row by unique key: model id, model entity id. | |
![]() | |
static bool | keyLess (const IRowBaseUptr &i_left, const IRowBaseUptr &i_right) |
less comparator by row primary key. | |
static bool | keyEqual (const IRowBaseUptr &i_left, const IRowBaseUptr &i_right) |
equal comparator by row primary key. | |
Public Attributes | |
int | modelId |
model_id INT NOT NULL | |
int | entityId |
model_entity_id INT NOT NULL | |
string | entityName |
entity_name VARCHAR(255) NOT NULL | |
int | entityHid |
entity_hid INT NOT NULL, – unique entity id | |
string | digest |
entity_digest VARCHAR(32) NOT NULL | |
entity_dic table row.