CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
ora::STLContainerStreamer Class Reference

#include <STLContainerStreamer.h>

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

Public Member Functions

IRelationalReadernewReader ()
 
IRelationalUpdaternewUpdater ()
 
IRelationalWriternewWriter ()
 
 STLContainerStreamer (const edm::TypeWithDict &objectType, MappingElement &mapping, ContainerSchema &contSchema)
 
 ~STLContainerStreamer ()
 
- Public Member Functions inherited from ora::IRelationalStreamer
virtual ~IRelationalStreamer ()
 Destructor. More...
 

Private Attributes

MappingElementm_mapping
 
edm::TypeWithDict m_objectType
 
ContainerSchemam_schema
 

Detailed Description

Definition at line 115 of file STLContainerStreamer.h.

Constructor & Destructor Documentation

ora::STLContainerStreamer::STLContainerStreamer ( const edm::TypeWithDict objectType,
MappingElement mapping,
ContainerSchema contSchema 
)

Definition at line 440 of file STLContainerStreamer.cc.

442  :
443  m_objectType( objectType ),
444  m_mapping( mapping ),
445  m_schema( contSchema ){
446 }
ora::STLContainerStreamer::~STLContainerStreamer ( )

Definition at line 448 of file STLContainerStreamer.cc.

448  {
449 }

Member Function Documentation

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

Implements ora::IRelationalStreamer.

Definition at line 459 of file STLContainerStreamer.cc.

459  {
460  return new STLContainerReader( m_objectType, m_mapping, m_schema );
461 }
ora::IRelationalUpdater * ora::STLContainerStreamer::newUpdater ( )
virtual

Implements ora::IRelationalStreamer.

Definition at line 455 of file STLContainerStreamer.cc.

455  {
456  return new STLContainerUpdater( m_objectType, m_mapping, m_schema );
457 }
ora::IRelationalWriter * ora::STLContainerStreamer::newWriter ( )
virtual

Implements ora::IRelationalStreamer.

Definition at line 451 of file STLContainerStreamer.cc.

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

Member Data Documentation

MappingElement& ora::STLContainerStreamer::m_mapping
private

Definition at line 130 of file STLContainerStreamer.h.

edm::TypeWithDict ora::STLContainerStreamer::m_objectType
private

Definition at line 129 of file STLContainerStreamer.h.

ContainerSchema& ora::STLContainerStreamer::m_schema
private

Definition at line 131 of file STLContainerStreamer.h.