로딩중...
검색중...
일치하는것 없음
richLog.hpp 파일 참조
#include "clog/logger.hpp"

이 파일의 소스 코드 페이지로 가기

클래스

struct  by::noWrap< T >
 Rich logging support with polymorphic type conversion 더 자세히 ...
 
struct  by::useWrap< T >
 
struct  by::strWrap
 

타입정의

template<typename T , bool Signed, int Size>
using by::tifIntType
 

함수

template<typename T >
noWrap< T > by::__convert__ (T rhs, tifIntType< T, true, 32 > *=nullptr)
 
template<typename T >
noWrap< T > by::__convert__ (T rhs, tifIntType< T, true, 64 > *=nullptr)
 
template<typename T >
noWrap< T > by::__convert__ (T rhs, tifIntType< T, false, 32 > *=nullptr)
 
template<typename T >
noWrap< T > by::__convert__ (T rhs, tifIntType< T, false, 64 > *=nullptr)
 
noWrap< nflt > by::__convert__ (nflt rhs)
 
noWrap< nflt > by::__convert__ (nflt *rhs)
 
noWrap< nchar > by::__convert__ (nchar rhs)
 
noWrap< const nchar * > by::__convert__ (nchar *rhs)
 
noWrap< const nchar * > by::__convert__ (const nchar *rhs)
 
strWrap by::__convert__ (nbool rhs)
 
strWrap by::__convert__ (nbool *rhs)
 
noWrap< ndbl > by::__convert__ (ndbl rhs)
 
noWrap< ndbl > by::__convert__ (ndbl *rhs)
 
noWrap< nshort > by::__convert__ (nshort rhs)
 
noWrap< nshort > by::__convert__ (nshort *rhs)
 
noWrap< nushort > by::__convert__ (nushort rhs)
 
noWrap< nushort > by::__convert__ (nushort *rhs)
 
strWrap by::__convert__ (const std::string *rhs)
 
strWrap by::__convert__ (const std::string &rhs)
 
strWrap by::__convert__ (void *rhs)
 
template<typename... Ts>
void by::richLog (errLv::level lv, const std::string &filename, const nchar *func, nint line, const nchar *fmt, const Ts &... args)
 
template<typename... Ts>
void by::dbgRichLog (errLv::level lv, const std::string &filename, const nchar *func, nint line, const nchar *fmt, const Ts &... args)
 

타입정의 문서화

◆ tifIntType

template<typename T , bool Signed, int Size>
using by::tifIntType
초기값:
typename std::enable_if<std::is_integral_v<T> == true && std::is_signed<T>{} == Signed &&
sizeof(T) * 8 == Size>::type
Rich logging support with polymorphic type conversion
Definition richLog.hpp:34