log4cplus  2.0.0
qt4debugappender.h
Go to the documentation of this file.
00001 // -*- C++ -*-
00002 // Module:  Log4cplus
00003 // File:    qt4debugappender.h
00004 // Created: 5/2012
00005 // Author:  Vaclav Zeman
00006 //
00007 //
00008 //  Copyright (C) 2012-2015, Vaclav Zeman. All rights reserved.
00009 //  
00010 //  Redistribution and use in source and binary forms, with or without modifica-
00011 //  tion, are permitted provided that the following conditions are met:
00012 //  
00013 //  1. Redistributions of  source code must  retain the above copyright  notice,
00014 //     this list of conditions and the following disclaimer.
00015 //  
00016 //  2. Redistributions in binary form must reproduce the above copyright notice,
00017 //     this list of conditions and the following disclaimer in the documentation
00018 //     and/or other materials provided with the distribution.
00019 //  
00020 //  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
00021 //  INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
00022 //  FITNESS  FOR A PARTICULAR  PURPOSE ARE  DISCLAIMED.  IN NO  EVENT SHALL  THE
00023 //  APACHE SOFTWARE  FOUNDATION  OR ITS CONTRIBUTORS  BE LIABLE FOR  ANY DIRECT,
00024 //  INDIRECT, INCIDENTAL, SPECIAL,  EXEMPLARY, OR CONSEQUENTIAL  DAMAGES (INCLU-
00025 //  DING, BUT NOT LIMITED TO, PROCUREMENT  OF SUBSTITUTE GOODS OR SERVICES; LOSS
00026 //  OF USE, DATA, OR  PROFITS; OR BUSINESS  INTERRUPTION)  HOWEVER CAUSED AND ON
00027 //  ANY  THEORY OF LIABILITY,  WHETHER  IN CONTRACT,  STRICT LIABILITY,  OR TORT
00028 //  (INCLUDING  NEGLIGENCE OR  OTHERWISE) ARISING IN  ANY WAY OUT OF THE  USE OF
00029 //  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00030    
00031  
00032 //
00033 
00036 #ifndef LOG4CPLUS_QT4DEBUGAPPENDER_H
00037 #define LOG4CPLUS_QT4DEBUGAPPENDER_H
00038 
00039 #include <log4cplus/config.hxx>
00040 
00041 #if defined (LOG4CPLUS_HAVE_PRAGMA_ONCE)
00042 #pragma once
00043 #endif
00044 
00045 #include <log4cplus/appender.h>
00046 
00047 #if defined (_WIN32)
00048   #if defined (log4cplusqt4debugappender_EXPORTS) \
00049       || defined (log4cplusqt4debugappenderU_EXPORTS) \
00050       || defined (DLL_EXPORT)
00051     #undef LOG4CPLUS_QT4DEBUGAPPENDER_BUILD_DLL
00052     #define LOG4CPLUS_QT4DEBUGAPPENDER_BUILD_DLL
00053   #endif
00054   #if defined (LOG4CPLUS_QT4DEBUGAPPENDER_BUILD_DLL)
00055     #if defined (INSIDE_LOG4CPLUS_QT4DEBUGAPPENDER)
00056       #define LOG4CPLUS_QT4DEBUGAPPENDER_EXPORT __declspec(dllexport)
00057     #else
00058       #define LOG4CPLUS_QT4DEBUGAPPENDER_EXPORT __declspec(dllimport)
00059     #endif
00060   #else
00061     #define LOG4CPLUS_QT4DEBUGAPPENDER_EXPORT
00062   #endif
00063 #else
00064   #if defined (INSIDE_LOG4CPLUS_QT4DEBUGAPPENDER)
00065     #define LOG4CPLUS_QT4DEBUGAPPENDER_EXPORT LOG4CPLUS_DECLSPEC_EXPORT
00066   #else
00067     #define LOG4CPLUS_QT4DEBUGAPPENDER_EXPORT LOG4CPLUS_DECLSPEC_IMPORT
00068   #endif // defined (INSIDE_LOG4CPLUS_QT4DEBUGAPPENDER)
00069 #endif // !_WIN32
00070 
00071 
00072 namespace log4cplus
00073 {
00074 
00075 
00076 class LOG4CPLUS_QT4DEBUGAPPENDER_EXPORT Qt4DebugAppender
00077     : public Appender
00078 {
00079 public:
00080     Qt4DebugAppender ();
00081     explicit Qt4DebugAppender (helpers::Properties const &);
00082     virtual ~Qt4DebugAppender ();
00083 
00084     virtual void close ();
00085 
00086     static void registerAppender ();
00087 
00088 protected:
00089     virtual void append (spi::InternalLoggingEvent const &);
00090 
00091 private:
00092     Qt4DebugAppender (Qt4DebugAppender const &);
00093     Qt4DebugAppender & operator = (Qt4DebugAppender const &);
00094 };
00095 
00096 
00097 typedef helpers::SharedObjectPtr<Qt4DebugAppender> Qt4DebugAppenderPtr;
00098 
00099 
00100 } // namespace log4cplus
00101 
00102 
00103 #endif // LOG4CPLUS_QT4DEBUGAPPENDER_H