SNAP Library 4.0, Developer Reference
2017-07-27 13:18:06
SNAP, a general purpose, high performance system for analysis and manipulation of large networks
|
Table Row (Record) More...
#include <table.h>
Public Member Functions | |
TTableRow () | |
Default constructor. More... | |
void | AddInt (const TInt &Val) |
Adds int attribute to this row. More... | |
void | AddFlt (const TFlt &Val) |
Adds float attribute to this row. More... | |
void | AddStr (const TStr &Val) |
Adds string attribute to this row. More... | |
TIntV | GetIntVals () const |
Gets int attributes of this row. More... | |
TFltV | GetFltVals () const |
Gets float attributes of this row. More... | |
TStrV | GetStrVals () const |
Gets string attributes of this row. More... | |
Protected Attributes | |
TIntV | IntVals |
Values of the int columns for this row. More... | |
TFltV | FltVals |
Values of the flt columns for this row. More... | |
TStrV | StrVals |
Values of the str columns for this row. More... | |
|
inline |
Adds float attribute to this row.
Definition at line 245 of file table.h.
References TVec< TVal, TSizeTy >::Add(), and FltVals.
|
inline |
Adds int attribute to this row.
Definition at line 243 of file table.h.
References TVec< TVal, TSizeTy >::Add(), and IntVals.
|
inline |
Adds string attribute to this row.
Definition at line 247 of file table.h.
References TVec< TVal, TSizeTy >::Add(), and StrVals.
|
inline |
Gets float attributes of this row.
Definition at line 251 of file table.h.
References FltVals.
Referenced by TTable::AddRow().
|
inline |
Gets int attributes of this row.
Definition at line 249 of file table.h.
References IntVals.
Referenced by TTable::AddRow().
|
inline |
Gets string attributes of this row.
Definition at line 253 of file table.h.
References StrVals.
Referenced by TTable::AddRow().
|
protected |
Values of the flt columns for this row.
Definition at line 237 of file table.h.
Referenced by AddFlt(), and GetFltVals().
|
protected |
Values of the int columns for this row.
Definition at line 236 of file table.h.
Referenced by AddInt(), and GetIntVals().
|
protected |
Values of the str columns for this row.
Definition at line 238 of file table.h.
Referenced by AddStr(), and GetStrVals().