Flow123d  master-f44eb46
Classes | Public Types | Public Attributes | List of all members
fmt::internal::Value Struct Reference

#include <format.h>

Inheritance diagram for fmt::internal::Value:
Inheritance graph
[legend]
Collaboration diagram for fmt::internal::Value:
Collaboration graph
[legend]

Classes

struct  CustomValue
 
struct  StringValue
 

Public Types

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
}
 
typedef void(* FormatFunc) (void *formatter, const void *arg, void *format_str_ptr)
 

Public Attributes

union {
   int   int_value
 
   unsigned   uint_value
 
   LongLong   long_long_value
 
   ULongLong   ulong_long_value
 
   double   double_value
 
   long double   long_double_value
 
   const void *   pointer
 
   StringValue< char >   string
 
   StringValue< signed char >   sstring
 
   StringValue< unsigned char >   ustring
 
   StringValue< wchar_t >   wstring
 
   CustomValue   custom
 
}; 
 

Detailed Description

Definition at line 992 of file format.h.

Member Typedef Documentation

◆ FormatFunc

typedef void(* fmt::internal::Value::FormatFunc) (void *formatter, const void *arg, void *format_str_ptr)

Definition at line 999 of file format.h.

Member Enumeration Documentation

◆ Type

Enumerator
NONE 
NAMED_ARG 
INT 
UINT 
LONG_LONG 
ULONG_LONG 
BOOL 
CHAR 
LAST_INTEGER_TYPE 
DOUBLE 
LONG_DOUBLE 
LAST_NUMERIC_TYPE 
CSTRING 
STRING 
WSTRING 
POINTER 
CUSTOM 

Definition at line 1022 of file format.h.

Member Data Documentation

◆ 

union { ... }

◆ custom

CustomValue fmt::internal::Value::custom

Definition at line 1019 of file format.h.

◆ double_value

double fmt::internal::Value::double_value

Definition at line 1012 of file format.h.

◆ int_value

int fmt::internal::Value::int_value

Definition at line 1008 of file format.h.

◆ long_double_value

long double fmt::internal::Value::long_double_value

Definition at line 1013 of file format.h.

◆ long_long_value

LongLong fmt::internal::Value::long_long_value

Definition at line 1010 of file format.h.

◆ pointer

const void* fmt::internal::Value::pointer

Definition at line 1014 of file format.h.

◆ sstring

StringValue<signed char> fmt::internal::Value::sstring

Definition at line 1016 of file format.h.

◆ string

StringValue<char> fmt::internal::Value::string

Definition at line 1015 of file format.h.

◆ uint_value

unsigned fmt::internal::Value::uint_value

Definition at line 1009 of file format.h.

◆ ulong_long_value

ULongLong fmt::internal::Value::ulong_long_value

Definition at line 1011 of file format.h.

◆ ustring

StringValue<unsigned char> fmt::internal::Value::ustring

Definition at line 1017 of file format.h.

◆ wstring

StringValue<wchar_t> fmt::internal::Value::wstring

Definition at line 1018 of file format.h.


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