#include <Conv.h>
|
static const unsigned short | buf2val (double **buf) |
|
static string | rttiType () |
|
static unsigned int | size (unsigned short val) |
|
static void | str2val (unsigned short &val, const string &s) |
|
static void | val2buf (unsigned short val, double **buf) |
|
static void | val2str (string &s, unsigned short val) |
|
template<>
class Conv< unsigned short >
Definition at line 327 of file Conv.h.
static const unsigned short Conv< unsigned short >::buf2val |
( |
double ** |
buf | ) |
|
|
inlinestatic |
Definition at line 338 of file Conv.h.
339 unsigned short ret = (
unsigned int)**buf;
static string Conv< unsigned short >::rttiType |
( |
| ) |
|
|
inlinestatic |
Definition at line 358 of file Conv.h.
359 return "unsigned short";
static unsigned int Conv< unsigned short >::size |
( |
unsigned short |
val | ) |
|
|
inlinestatic |
This is the size used in the serialized form.
Definition at line 333 of file Conv.h.
static void Conv< unsigned short >::str2val |
( |
unsigned short & |
val, |
|
|
const string & |
s |
|
) |
| |
|
inlinestatic |
Definition at line 348 of file Conv.h.
349 val = atoi( s.c_str() );
static void Conv< unsigned short >::val2buf |
( |
unsigned short |
val, |
|
|
double ** |
buf |
|
) |
| |
|
inlinestatic |
static void Conv< unsigned short >::val2str |
( |
string & |
s, |
|
|
unsigned short |
val |
|
) |
| |
|
inlinestatic |
The documentation for this class was generated from the following file: