basix_doc 0.1
binary_helper< exception > Struct Template Reference

#include <port.hpp>

Inheritance diagram for binary_helper< exception >:
void_binary_helper< exception >

List of all members.

Static Public Member Functions


Detailed Description

template<>
struct mmx::binary_helper< exception >

Definition at line 387 of file port.hpp.


Member Function Documentation

static generic access ( const exception x,
nat  i 
) [inline, static, inherited]

Definition at line 187 of file port.hpp.

                                                   {
    return vector_access (disassemble (x), i); }
static exception assemble ( const generic x) [inline, static, final]

Reimplemented from void_binary_helper< exception >.

Definition at line 392 of file port.hpp.

References mmx::exception.

                                                      {
    return exception (x); }
static generic disassemble ( const exception x) [inline, static]

Reimplemented from void_binary_helper< exception >.

Definition at line 390 of file port.hpp.

                                                         {
    return *x; }
static generic full_type_name ( ) [inline, static]

Reimplemented from void_binary_helper< exception >.

Definition at line 389 of file port.hpp.

{ return "Exception"; }
static exception read ( const port in) [inline, static, final]

Reimplemented from void_binary_helper< exception >.

Definition at line 396 of file port.hpp.

References mmx::exception.

                                                {
    return exception (binary_read<generic> (in)); }
static string short_type_name ( ) [inline, static]

Reimplemented from void_binary_helper< exception >.

Definition at line 388 of file port.hpp.

{ return "Exc"; }
static nat size ( const exception x) [inline, static, inherited]

Definition at line 185 of file port.hpp.

                                      {
    return vector_size (disassemble (x)); }
static void write ( const port out,
const exception e 
) [inline, static]

Reimplemented from void_binary_helper< exception >.

Definition at line 394 of file port.hpp.

                                                                 {
    binary_write<generic> (out, *e); }

The documentation for this struct was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines