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