Public Member Functions | Private Attributes
FIX::MessageStoreFactoryExceptionWrapper Class Reference

#include <MessageStore.h>

Collaboration diagram for FIX::MessageStoreFactoryExceptionWrapper:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 MessageStoreFactoryExceptionWrapper (MessageStoreFactory *pFactory)
MessageStorecreate (const SessionID &, bool &, ConfigError &)
void destroy (MessageStore *)

Private Attributes

MessageStoreFactorym_pFactory

Detailed Description

Definition at line 138 of file MessageStore.h.


Constructor & Destructor Documentation

Definition at line 143 of file MessageStore.h.

  : m_pFactory( pFactory ) {}

Member Function Documentation

MessageStore * FIX::MessageStoreFactoryExceptionWrapper::create ( const SessionID sessionID,
bool &  threw,
ConfigError ex 
)

Definition at line 57 of file MessageStore.cpp.

References FIX::MessageStoreFactory::create(), and m_pFactory.

{
  threw = false;
  try { return m_pFactory->create( sessionID ); }
  catch ( ConfigError & e ) { threw = true; ex = e; return 0; }
}

Definition at line 64 of file MessageStore.cpp.

References FIX::MessageStoreFactory::destroy(), and m_pFactory.

{
  m_pFactory->destroy( pStore );
}

Member Data Documentation

Definition at line 141 of file MessageStore.h.

Referenced by create(), and destroy().


The documentation for this class was generated from the following files:

Generated on Mon Jun 23 2014 23:49:39 for QuickFIX by doxygen 1.7.6.1 written by Dimitri van Heesch, © 1997-2001