ewmscp  ..
Public Member Functions | Protected Attributes | List of all members
options::postFixedNumber< T > Class Template Reference

#include <Options.h>

Collaboration diagram for options::postFixedNumber< T >:
[legend]

Public Member Functions

 postFixedNumber ()
 
 postFixedNumber (T aValue)
 
postFixedNumberoperator= (const T aValue)
 
 operator T () const
 
 operator T& ()
 

Protected Attributes

lValue
 

Detailed Description

template<typename T>
class options::postFixedNumber< T >

Definition at line 104 of file Options.h.

Constructor & Destructor Documentation

◆ postFixedNumber() [1/2]

template<typename T >
options::postFixedNumber< T >::postFixedNumber ( )
inline

Definition at line 108 of file Options.h.

108 {};

◆ postFixedNumber() [2/2]

template<typename T >
options::postFixedNumber< T >::postFixedNumber ( aValue)
inline

Definition at line 109 of file Options.h.

109 : lValue(aValue) {};

Member Function Documentation

◆ operator T()

template<typename T >
options::postFixedNumber< T >::operator T ( ) const
inline

Definition at line 114 of file Options.h.

114  {
115  return lValue;
116  }

References options::postFixedNumber< T >::lValue.

◆ operator T&()

template<typename T >
options::postFixedNumber< T >::operator T& ( )
inline

Definition at line 117 of file Options.h.

117  {
118  return lValue;
119  }

References options::postFixedNumber< T >::lValue.

◆ operator=()

template<typename T >
postFixedNumber& options::postFixedNumber< T >::operator= ( const T  aValue)
inline

Definition at line 110 of file Options.h.

110  {
111  lValue = aValue;
112  return *this;
113  }

References options::postFixedNumber< T >::lValue.

Member Data Documentation

◆ lValue

template<typename T >
T options::postFixedNumber< T >::lValue
protected

The documentation for this class was generated from the following file:
options::postFixedNumber::lValue
T lValue
Definition: Options.h:106