OpenWalnut 1.3.1
Public Types | Public Member Functions | Static Public Member Functions | Private Attributes
WModuleOutputData< T > Class Template Reference

Class offering an instantiate-able data connection between modules. More...

#include <WModuleOutputData.h>

Inheritance diagram for WModuleOutputData< T >:

List of all members.

Public Types

typedef boost::shared_ptr
< WModuleOutputData< T > > 
PtrType
 Pointer to this.
typedef WModuleOutputData< T > & RefType
 Reference to this type.
typedef WModuleOutputData< TType
 Type of the connector.
typedef T TransferType
 Typedef to the contained transferable.

Public Member Functions

 WModuleOutputData (boost::shared_ptr< WModule > module, std::string name="", std::string description="")
 Constructor.
virtual ~WModuleOutputData ()
 Destructor.
virtual void updateData (boost::shared_ptr< T > data)
 Update the data associated.
virtual void reset ()
 Resets the data on this output.
virtual void triggerUpdate ()
 This method simply propagates an update but does not actually change the data.
virtual const
boost::shared_ptr
< WTransferable
getRawData () const
 Gives back the currently set data as WTransferable.
const boost::shared_ptr< TgetData () const
 Gives back the currently set data.
virtual bool connectable (boost::shared_ptr< WModuleConnector > con)
 Checks whether the specified connector is an input connector and compatible with T.
virtual boost::shared_ptr
< WPrototyped
getTransferPrototype ()
 Returns the prototype of the Type T used in this connector.

Static Public Member Functions

static PtrType create (boost::shared_ptr< WModule > module, std::string name="", std::string description="")
 Convenience method to create a new instance of this out data connector with proper type.
static PtrType createAndAdd (boost::shared_ptr< WModule > module, std::string name="", std::string description="")
 Convenience method to create a new instance of this out data connector with proper type and add it to the list of connectors of the specified module.

Private Attributes

boost::shared_ptr< Tm_data
 The data associated with this connector.

Detailed Description

template<typename T>
class WModuleOutputData< T >

Class offering an instantiate-able data connection between modules.

Due to is template style it is possible to bind nearly arbitrary data.

Definition at line 47 of file WModuleOutputData.h.


Member Typedef Documentation

template<typename T>
typedef boost::shared_ptr< WModuleOutputData< T > > WModuleOutputData< T >::PtrType

Pointer to this.

For convenience.

Reimplemented in WModuleOutputForwardData< T >.

Definition at line 53 of file WModuleOutputData.h.

template<typename T>
typedef WModuleOutputData< T >& WModuleOutputData< T >::RefType

Reference to this type.

Reimplemented in WModuleOutputForwardData< T >.

Definition at line 58 of file WModuleOutputData.h.

template<typename T>
typedef T WModuleOutputData< T >::TransferType

Typedef to the contained transferable.

Reimplemented in WModuleOutputForwardData< T >.

Definition at line 68 of file WModuleOutputData.h.

template<typename T>
typedef WModuleOutputData< T > WModuleOutputData< T >::Type

Type of the connector.

Reimplemented in WModuleOutputForwardData< T >.

Definition at line 63 of file WModuleOutputData.h.


Constructor & Destructor Documentation

template<typename T>
WModuleOutputData< T >::WModuleOutputData ( boost::shared_ptr< WModule module,
std::string  name = "",
std::string  description = "" 
) [inline]

Constructor.

Parameters:
modulethe module which is owner of this connector.
nameThe name of this connector.
descriptionShort description of this connector.

Definition at line 100 of file WModuleOutputData.h.

References WModuleOutputData< T >::m_data.

template<typename T>
virtual WModuleOutputData< T >::~WModuleOutputData ( ) [inline, virtual]

Destructor.

Definition at line 109 of file WModuleOutputData.h.


Member Function Documentation

template<typename T>
virtual bool WModuleOutputData< T >::connectable ( boost::shared_ptr< WModuleConnector con) [inline, virtual]

Checks whether the specified connector is an input connector and compatible with T.

Parameters:
conthe connector to check against.
Returns:
true if compatible.

Reimplemented from WModuleOutputConnector.

Definition at line 170 of file WModuleOutputData.h.

template<typename T >
WModuleOutputData< T >::PtrType WModuleOutputData< T >::create ( boost::shared_ptr< WModule module,
std::string  name = "",
std::string  description = "" 
) [static]

Convenience method to create a new instance of this out data connector with proper type.

Parameters:
modulethe module owning this instance
namethe name of this connector.
descriptionthe description of this connector.
Returns:
the pointer to the created connector.

Reimplemented in WModuleOutputForwardData< T >.

Definition at line 196 of file WModuleOutputData.h.

template<typename T >
WModuleOutputData< T >::PtrType WModuleOutputData< T >::createAndAdd ( boost::shared_ptr< WModule module,
std::string  name = "",
std::string  description = "" 
) [static]

Convenience method to create a new instance of this out data connector with proper type and add it to the list of connectors of the specified module.

Parameters:
modulethe module owning this instance
namethe name of this connector.
descriptionthe description of this connector.
Returns:
the pointer to the created connector.

Reimplemented in WModuleOutputForwardData< T >.

Definition at line 205 of file WModuleOutputData.h.

template<typename T>
const boost::shared_ptr< T > WModuleOutputData< T >::getData ( ) const [inline]

Gives back the currently set data.

Returns:
the data. If no data has been set: a NULL pointer is returned.

Definition at line 158 of file WModuleOutputData.h.

References WModuleOutputData< T >::m_data.

Referenced by WModuleImpl::notifyDataChange().

template<typename T>
virtual const boost::shared_ptr< WTransferable > WModuleOutputData< T >::getRawData ( ) const [inline, virtual]

Gives back the currently set data as WTransferable.

Returns:
the data. If no data has been set: a NULL pointer is returned.

Implements WModuleOutputConnector.

Definition at line 148 of file WModuleOutputData.h.

References WModuleOutputData< T >::m_data.

template<typename T>
virtual boost::shared_ptr< WPrototyped > WModuleOutputData< T >::getTransferPrototype ( ) [inline, virtual]

Returns the prototype of the Type T used in this connector.

Returns:
the prototype of the transfered type.

Implements WModuleOutputConnector.

Definition at line 181 of file WModuleOutputData.h.

References WModuleOutputData< T >::m_data.

template<typename T>
virtual void WModuleOutputData< T >::reset ( ) [inline, virtual]

Resets the data on this output.

It actually sets NULL and triggers an update.

Definition at line 129 of file WModuleOutputData.h.

References WModuleOutputData< T >::updateData().

template<typename T>
virtual void WModuleOutputData< T >::triggerUpdate ( ) [inline, virtual]

This method simply propagates an update but does not actually change the data.

Definition at line 137 of file WModuleOutputData.h.

References WModuleOutputConnector::propagateDataChange().

Referenced by WModuleOutputData< T >::updateData().

template<typename T>
virtual void WModuleOutputData< T >::updateData ( boost::shared_ptr< T data) [inline, virtual]

Update the data associated.

Parameters:
datathe data do send

Definition at line 118 of file WModuleOutputData.h.

References WModuleOutputData< T >::m_data, and WModuleOutputData< T >::triggerUpdate().

Referenced by WModuleOutputForwardData< T >::inputNotifyDataChange(), and WModuleOutputData< T >::reset().


Member Data Documentation

template<typename T>
boost::shared_ptr< T > WModuleOutputData< T >::m_data [private]

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