AuxPort 0.2
Modules for Audio Software Development
|
ICasters is an abstract class that provides pure virtual interfaces to cast data from one type to another. More...
#include <AuxCaster.h>
Public Member Functions | |
virtual int32 | toInt32 ()=0 |
This function can be implemented by your Class/Type to cast it to an int32 integer. | |
virtual uint32 | toUInt32 ()=0 |
This function can be implemented by your Class/Type to cast it to an unsigned int32 integer. | |
virtual std::string | toStdString ()=0 |
This function can be implemented by your Class/Type to cast it to a std::string. | |
virtual double | toDouble ()=0 |
This function can be implemented by your Class/Type to cast it to Double. | |
ICasters is an abstract class that provides pure virtual interfaces to cast data from one type to another.
Definition at line 53 of file AuxCaster.h.
|
pure virtual |
This function can be implemented by your Class/Type to cast it to Double.
Implemented in AuxPort::String.
|
pure virtual |
This function can be implemented by your Class/Type to cast it to an int32 integer.
Implemented in AuxPort::String.
|
pure virtual |
This function can be implemented by your Class/Type to cast it to a std::string.
Implemented in AuxPort::String.
|
pure virtual |
This function can be implemented by your Class/Type to cast it to an unsigned int32 integer.
Implemented in AuxPort::String.