|
Apache Log4cxx
Version 1.7.0
|
#include <log4cxx/logstring.h>Go to the source code of this file.
Classes | |
| class | log4cxx::helpers::Transcoder |
| Simple transcoder for converting between external char and wchar_t strings and internal strings. More... | |
Namespaces | |
| namespace | log4cxx |
| namespace | log4cxx::helpers |
Macros | |
| #define | LOG4CXX_ENCODE_CHAR(var, src) |
Create a std::string equivalent of src. | |
| #define | LOG4CXX_DECODE_CHAR(var, src) |
Create a log4cxx::LogString equivalent of src. | |
| #define | LOG4CXX_DECODE_CFSTRING(var, src) |
Create a log4cxx::LogString equivalent of src. | |
| #define | LOG4CXX_ENCODE_CFSTRING(var, src) |
Create a CFStringRef equivalent of src. | |
| #define | LOG4CXX_ENCODE_WCHAR(var, src) |
Create a std::wstring equivalent of src. | |
| #define | LOG4CXX_DECODE_WCHAR(var, src) |
Create a log4cxx::LogString equivalent of src. | |
| #define | LOG4CXX_ENCODE_UNICHAR(var, src) |
Create a std::basic_string<UniChar> equivalent of src. | |
| #define | LOG4CXX_DECODE_UNICHAR(var, src) |
Create a log4cxx::LogString equivalent of src. | |
| #define LOG4CXX_DECODE_CFSTRING | ( | var, | |
| src ) |
Create a log4cxx::LogString equivalent of src.
Defines a log4cxx::LogString variable var initialized with characters equivalent to the CFStringRef src contents.
| var | The name of the new log4cxx::LogString variable. |
| src | The CFStringRef variable. |
| #define LOG4CXX_DECODE_CHAR | ( | var, | |
| src ) |
Create a log4cxx::LogString equivalent of src.
Defines a log4cxx::LogString variable var initialized with characters equivalent to the std::string src contents.
| var | The name of the new log4cxx::LogString variable. |
| src | The std::string variable. |
| #define LOG4CXX_DECODE_UNICHAR | ( | var, | |
| src ) |
Create a log4cxx::LogString equivalent of src.
Defines a log4cxx::LogString variable var initialized with characters equivalent to the std::basic_string<UniChar> src contents.
| var | The name of the new log4cxx::LogString variable. |
| src | The std::basic_string<UniChar> variable. |
| #define LOG4CXX_DECODE_WCHAR | ( | var, | |
| src ) |
Create a log4cxx::LogString equivalent of src.
Defines a log4cxx::LogString variable var initialized with characters equivalent to the std::wstring src contents.
| var | The name of the new log4cxx::LogString variable. |
| src | The std::wstring variable. |
| #define LOG4CXX_ENCODE_CFSTRING | ( | var, | |
| src ) |
Create a CFStringRef equivalent of src.
Defines a CFStringRef variable var initialized with characters equivalent to the log4cxx::LogString src contents.
| var | The name of the new CFStringRef variable. |
| src | The log4cxx::LogString variable. |
| #define LOG4CXX_ENCODE_CHAR | ( | var, | |
| src ) |
Create a std::string equivalent of src.
Defines a std::string variable var initialized with characters equivalent to the log4cxx::LogString src contents.
| var | The name of the new std::string variable. |
| src | The log4cxx::LogString variable. |
| #define LOG4CXX_ENCODE_UNICHAR | ( | var, | |
| src ) |
Create a std::basic_string<UniChar> equivalent of src.
Defines a std::basic_string<UniChar> variable var initialized with characters equivalent to the log4cxx::LogString src contents.
| var | The name of the new std::basic_string<UniChar> variable. |
| src | The log4cxx::LogString variable. |
| #define LOG4CXX_ENCODE_WCHAR | ( | var, | |
| src ) |
Create a std::wstring equivalent of src.
Defines a std::wstring variable var initialized with characters equivalent to the log4cxx::LogString src contents.
| var | The name of the new std::wstring variable. |
| src | The log4cxx::LogString variable. |