CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions | Private Member Functions
edm::eventsetup::ProxyFactoryTemplate< T > Class Template Reference

#include <ProxyFactoryTemplate.h>

Inheritance diagram for edm::eventsetup::ProxyFactoryTemplate< T >:
edm::eventsetup::ProxyFactoryBase

Public Types

typedef T::record_type record_type
 

Public Member Functions

virtual DataKey makeKey (const std::string &iName) const
 
virtual std::auto_ptr< DataProxymakeProxy () const
 
 ProxyFactoryTemplate ()
 
- Public Member Functions inherited from edm::eventsetup::ProxyFactoryBase
 ProxyFactoryBase ()
 
virtual ~ProxyFactoryBase ()
 

Private Member Functions

const ProxyFactoryTemplateoperator= (const ProxyFactoryTemplate &)
 
 ProxyFactoryTemplate (const ProxyFactoryTemplate &)
 

Detailed Description

template<class T>
class edm::eventsetup::ProxyFactoryTemplate< T >

Definition at line 34 of file ProxyFactoryTemplate.h.

Member Typedef Documentation

template<class T >
typedef T::record_type edm::eventsetup::ProxyFactoryTemplate< T >::record_type

Definition at line 38 of file ProxyFactoryTemplate.h.

Constructor & Destructor Documentation

Definition at line 40 of file ProxyFactoryTemplate.h.

40 {}
template<class T >
edm::eventsetup::ProxyFactoryTemplate< T >::ProxyFactoryTemplate ( const ProxyFactoryTemplate< T > &  )
private

Member Function Documentation

template<class T >
virtual DataKey edm::eventsetup::ProxyFactoryTemplate< T >::makeKey ( const std::string &  iName) const
inlinevirtual

Implements edm::eventsetup::ProxyFactoryBase.

Definition at line 49 of file ProxyFactoryTemplate.h.

49  {
50  return DataKey(DataKey::makeTypeTag< typename T::value_type>(),iName.c_str());
51  }
template<class T >
virtual std::auto_ptr<DataProxy> edm::eventsetup::ProxyFactoryTemplate< T >::makeProxy ( ) const
inlinevirtual

Implements edm::eventsetup::ProxyFactoryBase.

Definition at line 44 of file ProxyFactoryTemplate.h.

44  {
45  return std::auto_ptr<DataProxy>(new T);
46  }
long double T
template<class T >
const ProxyFactoryTemplate& edm::eventsetup::ProxyFactoryTemplate< T >::operator= ( const ProxyFactoryTemplate< T > &  )
private