#include <Conv.h>
|
static const int | buf2val (double **buf) |
|
static string | rttiType () |
|
static unsigned int | size (int val) |
|
static void | str2val (int &val, const string &s) |
|
static void | val2buf (int val, double **buf) |
|
static void | val2str (string &s, int val) |
|
template<>
class Conv< int >
The template specialization of Conv< int > sets up alignment on word boundaries by storing the data as a double.
Definition at line 290 of file Conv.h.
static const int Conv< int >::buf2val |
( |
double ** |
buf | ) |
|
|
inlinestatic |
Definition at line 301 of file Conv.h.
302 int ret = (int)**buf;
static string Conv< int >::rttiType |
( |
| ) |
|
|
inlinestatic |
static unsigned int Conv< int >::size |
( |
int |
val | ) |
|
|
inlinestatic |
This is the size used in the serialized form.
Definition at line 296 of file Conv.h.
static void Conv< int >::str2val |
( |
int & |
val, |
|
|
const string & |
s |
|
) |
| |
|
inlinestatic |
Definition at line 311 of file Conv.h.
312 val = atoi( s.c_str() );
static void Conv< int >::val2buf |
( |
int |
val, |
|
|
double ** |
buf |
|
) |
| |
|
inlinestatic |
static void Conv< int >::val2str |
( |
string & |
s, |
|
|
int |
val |
|
) |
| |
|
inlinestatic |
The documentation for this class was generated from the following file: