QwAnalysis
MQwCloneable< base_t, type_t > Class Template Reference

#include <QwFactory.h>

+ Inheritance diagram for MQwCloneable< base_t, type_t >:
+ Collaboration diagram for MQwCloneable< base_t, type_t >:

Public Member Functions

virtual ~MQwCloneable ()
 Virtual destructor. More...
 
virtual base_t * Clone () const
 Concrete clone method. More...
 
const VQwFactory< base_t > * Factory () const
 Factory getter. More...
 
- Public Member Functions inherited from VQwCloneable< base_t >
virtual ~VQwCloneable ()
 Virtual destructor. More...
 
std::string GetClassName () const
 Get demangled name of this class. More...
 

Static Public Member Functions

static base_t * Create (const std::string &name)
 Object creation. More...
 
static type_t * Cast (type_t *type)
 Object dynamic cast. More...
 

Static Private Attributes

static const VQwFactory< base_t > * fFactory
 Pointer to the factory of this type. More...
 

Detailed Description

template<class base_t, class type_t>
class MQwCloneable< base_t, type_t >

Polymorphic copy construction by curiously recurring template pattern (mix-in) We have lost covariancy: clone will have the base type, not the derived type...

Definition at line 184 of file QwFactory.h.

Constructor & Destructor Documentation

template<class base_t, class type_t>
virtual MQwCloneable< base_t, type_t >::~MQwCloneable ( )
inlinevirtual

Virtual destructor.

Definition at line 189 of file QwFactory.h.

189 { };

Member Function Documentation

template<class base_t, class type_t>
static type_t* MQwCloneable< base_t, type_t >::Cast ( type_t *  type)
inlinestatic

Object dynamic cast.

Definition at line 206 of file QwFactory.h.

206  {
207  if (fFactory) return fFactory->Cast(type);
208  else return 0;
209  }
static const VQwFactory< base_t > * fFactory
Pointer to the factory of this type.
Definition: QwFactory.h:214
template<class base_t, class type_t>
virtual base_t* MQwCloneable< base_t, type_t >::Clone ( ) const
inlinevirtual

Concrete clone method.

Reimplemented from VQwCloneable< base_t >.

Definition at line 192 of file QwFactory.h.

192  {
193  return new type_t(static_cast<const type_t&>(*this));
194  }
template<class base_t, class type_t>
static base_t* MQwCloneable< base_t, type_t >::Create ( const std::string &  name)
inlinestatic

Object creation.

Definition at line 200 of file QwFactory.h.

200  {
201  if (fFactory) return fFactory->Create(name);
202  else return 0;
203  }
static const VQwFactory< base_t > * fFactory
Pointer to the factory of this type.
Definition: QwFactory.h:214
template<class base_t, class type_t>
const VQwFactory<base_t>* MQwCloneable< base_t, type_t >::Factory ( ) const
inlinevirtual

Factory getter.

Reimplemented from VQwCloneable< base_t >.

Definition at line 197 of file QwFactory.h.

197 { return fFactory; }
static const VQwFactory< base_t > * fFactory
Pointer to the factory of this type.
Definition: QwFactory.h:214

Field Documentation

template<class base_t, class type_t>
const VQwFactory<base_t>* MQwCloneable< base_t, type_t >::fFactory
staticprivate

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