g4tools  5.4.0
Public Member Functions | List of all members
tools::num_out< T > Class Template Reference
Inheritance diagram for tools::num_out< T >:
Inheritance graph
[legend]
Collaboration diagram for tools::num_out< T >:
Collaboration graph
[legend]

Public Member Functions

 num_out (const T &a_value)
 
 num_out (const num_out &a_from)
 
num_outoperator= (const num_out &a_from)
 

Detailed Description

template<class T>
class tools::num_out< T >

Definition at line 119 of file num2s.

Constructor & Destructor Documentation

◆ num_out() [1/2]

template<class T >
tools::num_out< T >::num_out ( const T &  a_value)
inline

Definition at line 126 of file num2s.

126  {
127  parent::operator+=("\"");
128  if(!numas(a_value,*this)) {} //throw
129  parent::operator+=("\"");
130  }

◆ num_out() [2/2]

template<class T >
tools::num_out< T >::num_out ( const num_out< T > &  a_from)
inline

Definition at line 132 of file num2s.

132 :parent(a_from){}

Member Function Documentation

◆ operator=()

template<class T >
num_out& tools::num_out< T >::operator= ( const num_out< T > &  a_from)
inline

Definition at line 133 of file num2s.

133 {parent::operator=(a_from);return *this;}

The documentation for this class was generated from the following file:
tools::numas
bool numas(const T &a_value, std::string &a_s)
Definition: num2s:89