Go to the source code of this file.
|
| log4cxx::helpers::LOG4CXX_PTR_DEF (Object) |
|
template<typename Ret , typename Type , bool = std::is_base_of<Ret, helpers::Object>::value, bool = std::is_base_of<Type, helpers::Object>::value> |
std::shared_ptr< Ret > | log4cxx::cast (const std::shared_ptr< Type > &incoming) |
| Attempt to cast one Object to another kind of Object.
|
|
◆ BEGIN_LOG4CXX_CAST_MAP
#define BEGIN_LOG4CXX_CAST_MAP |
( |
| ) |
|
Value: const void * cast(const helpers::Class& clazz) const override\
{\
const void * object = 0;\
if (&clazz == &helpers::Object::getStaticClass()) return (const helpers::Object *)this;
◆ DECLARE_ABSTRACT_LOG4CXX_OBJECT
#define DECLARE_ABSTRACT_LOG4CXX_OBJECT |
( |
|
object | ) |
|
Value:
const helpers::Class& getClass() const override;
#define DECLARE_LOG4CXX_CLAZZ_OBJECT(object)
Definition: object.h:26
◆ DECLARE_LOG4CXX_CLAZZ_OBJECT
#define DECLARE_LOG4CXX_CLAZZ_OBJECT |
( |
|
object | ) |
|
Value: public:\
class Clazz##object : public helpers::Class\
{\
public:\
Clazz##object() : helpers::Class() {}\
virtual ~Clazz##object() {}\
};\
static const helpers::Class& getStaticClass(); \
Definition: classregistration.h:29
std::basic_string< logchar > LogString
Definition: logstring.h:60
◆ DECLARE_LOG4CXX_OBJECT
#define DECLARE_LOG4CXX_OBJECT |
( |
|
object | ) |
|
Value: public:\
class Clazz##object : public helpers::Class\
{\
public:\
Clazz##object() : helpers::Class() {}\
virtual ~Clazz##object() {}\
virtual object* newInstance() const\
{\
return new object();\
}\
};\
const helpers::Class& getClass() const override;\
static const helpers::Class& getStaticClass(); \
◆ DECLARE_LOG4CXX_OBJECT_WITH_CUSTOM_CLASS
#define DECLARE_LOG4CXX_OBJECT_WITH_CUSTOM_CLASS |
( |
|
object, |
|
|
|
class |
|
) |
| |
Value: public:\
const helpers::Class& getClass() const override;\
static const helpers::Class& getStaticClass();\
◆ END_LOG4CXX_CAST_MAP
#define END_LOG4CXX_CAST_MAP |
( |
| ) |
|
Value: return object;\
}\
bool instanceof(const helpers::Class& clazz) const override\
{ return cast(clazz) != 0; }
◆ IMPLEMENT_LOG4CXX_OBJECT
#define IMPLEMENT_LOG4CXX_OBJECT |
( |
|
object | ) |
|
Value: const ::log4cxx::helpers::Class& object::getClass() const { return getStaticClass(); }\
const ::log4cxx::helpers::Class& object::getStaticClass() { \
static Clazz##object theClass; \
return theClass; \
} \
return classReg; \
}\
namespace log4cxx {
namespace classes { \
const ::log4cxx::helpers::ClassRegistration& object##Registration = object::registerClass(); \
} }
Definition: configuration.h:25
◆ IMPLEMENT_LOG4CXX_OBJECT_WITH_CUSTOM_CLASS
#define IMPLEMENT_LOG4CXX_OBJECT_WITH_CUSTOM_CLASS |
( |
|
object, |
|
|
|
class |
|
) |
| |
Value:
static class theClass; \
return theClass; \
} \
return classReg; \
}\
namespace log4cxx {
namespace classes { \
} }
◆ LOG4CXX_CAST_ENTRY
#define LOG4CXX_CAST_ENTRY |
( |
|
Interface | ) |
if (&clazz == &Interface::getStaticClass()) return (const Interface *)this; |
◆ LOG4CXX_CAST_ENTRY2
#define LOG4CXX_CAST_ENTRY2 |
( |
|
Interface, |
|
|
|
interface2 |
|
) |
| if (&clazz == &Interface::getStaticClass()) return (Interface *)(interface2 *)this; |
◆ LOG4CXX_CAST_ENTRY_CHAIN
#define LOG4CXX_CAST_ENTRY_CHAIN |
( |
|
Interface | ) |
|
Value: object = Interface::cast(clazz);\
if (object != 0) return object;