Primary template for the output-designated only converters. More...
#include <converter.hpp>
Public Member Functions | |
template<typename Input > | |
Output | operator() (const Input &input) |
virtual | ~Converter () |
Primary template for the output-designated only converters.
This is the primary template for the sub-family of converters which only designate the output in the template argument. These are designed to incorporate a group of conversions to the specified output type (convenience class).
Definition at line 77 of file converter.hpp.
|
inlinevirtual |
Definition at line 79 of file converter.hpp.
Output ecl::Converter< Output, void >::operator() | ( | const Input & | input | ) |
The generalised fallback for converting various input types to a specific output type. This looks inside the output template argument's class for the required converter.
input | : the input value to be converted. |
Definition at line 112 of file converter.hpp.