CMS 3D CMS Logo

Public Member Functions | Private Attributes

ora::STLContainerStreamer Class Reference

#include <STLContainerStreamer.h>

Inheritance diagram for ora::STLContainerStreamer:
ora::IRelationalStreamer

List of all members.

Public Member Functions

IRelationalReadernewReader ()
IRelationalUpdaternewUpdater ()
IRelationalWriternewWriter ()
 STLContainerStreamer (const Reflex::Type &objectType, MappingElement &mapping, ContainerSchema &contSchema)
 ~STLContainerStreamer ()

Private Attributes

MappingElementm_mapping
Reflex::Type m_objectType
ContainerSchemam_schema

Detailed Description

Definition at line 115 of file STLContainerStreamer.h.


Constructor & Destructor Documentation

ora::STLContainerStreamer::STLContainerStreamer ( const Reflex::Type &  objectType,
MappingElement mapping,
ContainerSchema contSchema 
)

Definition at line 430 of file STLContainerStreamer.cc.

                                                                              :
  m_objectType( objectType ),
  m_mapping( mapping ),
  m_schema( contSchema ){
}
ora::STLContainerStreamer::~STLContainerStreamer ( )

Definition at line 438 of file STLContainerStreamer.cc.

                                              {
}

Member Function Documentation

ora::IRelationalReader * ora::STLContainerStreamer::newReader ( ) [virtual]

Implements ora::IRelationalStreamer.

Definition at line 449 of file STLContainerStreamer.cc.

                                                        {
  return new STLContainerReader( m_objectType, m_mapping, m_schema );
}
ora::IRelationalUpdater * ora::STLContainerStreamer::newUpdater ( ) [virtual]

Implements ora::IRelationalStreamer.

Definition at line 445 of file STLContainerStreamer.cc.

                                                          {
  return new STLContainerUpdater( m_objectType, m_mapping, m_schema );
}
ora::IRelationalWriter * ora::STLContainerStreamer::newWriter ( ) [virtual]

Implements ora::IRelationalStreamer.

Definition at line 441 of file STLContainerStreamer.cc.

                                                        {
  return new STLContainerWriter( m_objectType, m_mapping, m_schema );
}

Member Data Documentation

Definition at line 130 of file STLContainerStreamer.h.

Definition at line 129 of file STLContainerStreamer.h.

Definition at line 131 of file STLContainerStreamer.h.