Public Types | Public Member Functions | Static Public Member Functions | Private Member Functions | Static Private Member Functions | List of all members
fmt::internal::MakeValue< Formatter > Class Template Reference

#include <format.h>

Inheritance diagram for fmt::internal::MakeValue< Formatter >:
Inheritance graph
[legend]

Public Types

typedef Formatter::Char Char
 
- Public Types inherited from fmt::internal::Value
typedef void(* FormatFunc) (void *formatter, const void *arg, void *format_str_ptr)
 
enum  Type {
  NONE, NAMED_ARG, INT, UINT,
  LONG_LONG, ULONG_LONG, BOOL, CHAR,
  LAST_INTEGER_TYPE = CHAR, DOUBLE, LONG_DOUBLE, LAST_NUMERIC_TYPE = LONG_DOUBLE,
  CSTRING, STRING, WSTRING, POINTER,
  CUSTOM
}
 

Public Member Functions

 MakeValue ()
 
 MakeValue (long value)
 
 MakeValue (unsigned long value)
 
 MakeValue (typename WCharHelper< wchar_t, Char >::Supported value)
 
template<typename T >
 MakeValue (const T &value, typename EnableIf< Not< ConvertToInt< T >::value >::value, int >::type=0)
 
template<typename T >
 MakeValue (const T &value, typename EnableIf< ConvertToInt< T >::value, int >::type=0)
 
template<typename Char_ >
 MakeValue (const NamedArg< Char_ > &value)
 

Static Public Member Functions

static uint64_t type (long)
 
static uint64_t type (unsigned long)
 
static uint64_t type (wchar_t)
 
template<typename T >
static uint64_t type (const T &)
 
template<typename Char_ >
static uint64_t type (const NamedArg< Char_ > &)
 

Private Member Functions

template<typename T >
 MakeValue (const T *value)
 
template<typename T >
 MakeValue (T *value)
 
 MakeValue (typename WCharHelper< wchar_t, Char >::Unsupported)
 
 MakeValue (typename WCharHelper< wchar_t *, Char >::Unsupported)
 
 MakeValue (typename WCharHelper< const wchar_t *, Char >::Unsupported)
 
 MakeValue (typename WCharHelper< const std::wstring &, Char >::Unsupported)
 
 MakeValue (typename WCharHelper< WStringRef, Char >::Unsupported)
 
void set_string (StringRef str)
 
void set_string (WStringRef str)
 

Static Private Member Functions

template<typename T >
static void format_custom_arg (void *formatter, const void *arg, void *format_str_ptr)
 

Additional Inherited Members

- Public Attributes inherited from fmt::internal::Arg
Type type
 
- Public Attributes inherited from fmt::internal::Value
union {
   CustomValue   custom
 
   double   double_value
 
   int   int_value
 
   long double   long_double_value
 
   LongLong   long_long_value
 
   const void *   pointer
 
   StringValue< signed char >   sstring
 
   StringValue< char >   string
 
   unsigned   uint_value
 
   ULongLong   ulong_long_value
 
   StringValue< unsigned char >   ustring
 
   StringValue< wchar_t >   wstring
 
}; 
 

Detailed Description

template<typename Formatter>
class fmt::internal::MakeValue< Formatter >

Definition at line 1356 of file format.h.

Member Typedef Documentation

template<typename Formatter>
typedef Formatter::Char fmt::internal::MakeValue< Formatter >::Char

Definition at line 1359 of file format.h.

Constructor & Destructor Documentation

template<typename Formatter>
template<typename T >
fmt::internal::MakeValue< Formatter >::MakeValue ( const T *  value)
private
template<typename Formatter>
template<typename T >
fmt::internal::MakeValue< Formatter >::MakeValue ( T *  value)
private
template<typename Formatter>
fmt::internal::MakeValue< Formatter >::MakeValue ( typename WCharHelper< wchar_t, Char >::Unsupported  )
private
template<typename Formatter>
fmt::internal::MakeValue< Formatter >::MakeValue ( typename WCharHelper< wchar_t *, Char >::Unsupported  )
private
template<typename Formatter>
fmt::internal::MakeValue< Formatter >::MakeValue ( typename WCharHelper< const wchar_t *, Char >::Unsupported  )
private
template<typename Formatter>
fmt::internal::MakeValue< Formatter >::MakeValue ( typename WCharHelper< const std::wstring &, Char >::Unsupported  )
private
template<typename Formatter>
fmt::internal::MakeValue< Formatter >::MakeValue ( typename WCharHelper< WStringRef, Char >::Unsupported  )
private
template<typename Formatter>
fmt::internal::MakeValue< Formatter >::MakeValue ( )
inline

Definition at line 1407 of file format.h.

template<typename Formatter>
fmt::internal::MakeValue< Formatter >::MakeValue ( long  value)
inline

Definition at line 1422 of file format.h.

template<typename Formatter>
fmt::internal::MakeValue< Formatter >::MakeValue ( unsigned long  value)
inline

Definition at line 1436 of file format.h.

template<typename Formatter>
fmt::internal::MakeValue< Formatter >::MakeValue ( typename WCharHelper< wchar_t, Char >::Supported  value)
inline

Definition at line 1459 of file format.h.

template<typename Formatter>
template<typename T >
fmt::internal::MakeValue< Formatter >::MakeValue ( const T &  value,
typename EnableIf< Not< ConvertToInt< T >::value >::value, int >::type  = 0 
)
inline

Definition at line 1498 of file format.h.

template<typename Formatter>
template<typename T >
fmt::internal::MakeValue< Formatter >::MakeValue ( const T &  value,
typename EnableIf< ConvertToInt< T >::value, int >::type  = 0 
)
inline

Definition at line 1507 of file format.h.

template<typename Formatter>
template<typename Char_ >
fmt::internal::MakeValue< Formatter >::MakeValue ( const NamedArg< Char_ > &  value)
inline

Definition at line 1522 of file format.h.

Member Function Documentation

template<typename Formatter>
template<typename T >
static void fmt::internal::MakeValue< Formatter >::format_custom_arg ( void *  formatter,
const void *  arg,
void *  format_str_ptr 
)
inlinestaticprivate

Definition at line 1398 of file format.h.

template<typename Formatter>
void fmt::internal::MakeValue< Formatter >::set_string ( StringRef  str)
inlineprivate

Definition at line 1384 of file format.h.

template<typename Formatter>
void fmt::internal::MakeValue< Formatter >::set_string ( WStringRef  str)
inlineprivate

Definition at line 1390 of file format.h.

template<typename Formatter>
static uint64_t fmt::internal::MakeValue< Formatter >::type ( long  )
inlinestatic

Definition at line 1431 of file format.h.

template<typename Formatter>
static uint64_t fmt::internal::MakeValue< Formatter >::type ( unsigned  long)
inlinestatic

Definition at line 1443 of file format.h.

template<typename Formatter>
static uint64_t fmt::internal::MakeValue< Formatter >::type ( wchar_t  )
inlinestatic

Definition at line 1463 of file format.h.

template<typename Formatter>
template<typename T >
static uint64_t fmt::internal::MakeValue< Formatter >::type ( const T &  )
inlinestatic

Definition at line 1514 of file format.h.

template<typename Formatter>
template<typename Char_ >
static uint64_t fmt::internal::MakeValue< Formatter >::type ( const NamedArg< Char_ > &  )
inlinestatic

Definition at line 1528 of file format.h.


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


ros_opcua_impl_freeopcua
Author(s): Denis Štogl
autogenerated on Tue Jan 19 2021 03:12:09