fix8  version 1.4.0
Open Source C++ FIX Framework
FIX8::Minst::_gen Struct Reference

Static Public Member Functions

template<typename T >
static Message_make (bool deepctor)
 
template<typename T , typename R >
static Message_make (bool deepctor)
 

Detailed Description

Generate a message instantiator

Definition at line 148 of file message.hpp.

Member Function Documentation

template<typename T >
static Message* FIX8::Minst::_gen::_make ( bool  deepctor)
inlinestatic

Instantiate a message

Template Parameters
Ttype to instantiate
Returns
new message

Definition at line 154 of file message.hpp.

154 { return new T(deepctor); }
template<typename T , typename R >
static Message* FIX8::Minst::_gen::_make ( bool  deepctor)
inlinestatic

Instantiate a message cast to Message

Template Parameters
Ttype to instantiate
Returns
new message

Definition at line 160 of file message.hpp.

160 { return reinterpret_cast<Message *>(new T(deepctor)); }

The documentation for this struct was generated from the following file: