summaryrefslogtreecommitdiff
path: root/ext/Log4Qt/src/appender.h
diff options
context:
space:
mode:
authorTomasz Sterna <tomek@xiaoka.com>2014-07-14 17:19:45 +0200
committerTomasz Sterna <tomek@xiaoka.com>2014-07-16 00:07:28 +0200
commit3c19406ee292e0ed7993bd4d3976cc34d40e2f22 (patch)
tree67d185e95d647e56c074f4b3a30ac4f0d81e2ee6 /ext/Log4Qt/src/appender.h
parent630cc2e3097f2236a4c1191be6c955ec523d6f1a (diff)
Replaced ext/Log4Qt source with submodule
Diffstat (limited to 'ext/Log4Qt/src/appender.h')
-rwxr-xr-xext/Log4Qt/src/appender.h135
1 files changed, 0 insertions, 135 deletions
diff --git a/ext/Log4Qt/src/appender.h b/ext/Log4Qt/src/appender.h
deleted file mode 100755
index a87d19a..0000000
--- a/ext/Log4Qt/src/appender.h
+++ /dev/null
@@ -1,135 +0,0 @@
-/******************************************************************************
- *
- * package:
- * file: appender.h
- * created: September 2007
- * author: Martin Heinrich
- *
- *
- * Copyright 2007 Martin Heinrich
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- ********************************************************************************/
-
-#ifndef LOG4QT_APPENDER_H
-#define LOG4QT_APPENDER_H
-
-
-/******************************************************************************
- * Dependencies
- ******************************************************************************/
-
-#include "helpers/logobject.h"
-
-#include "helpers/logobjectptr.h"
-
-#include "logger.h"
-
-
-/******************************************************************************
- * Declarations
- ******************************************************************************/
-
-namespace Log4Qt
-{
-
- class Filter;
- class Layout;
- class LoggingEvent;
-
- /*!
- * \brief The class Appender is the base class for all Appenders.
- *
- * To allow the whole hirarchy to be an ascendant of QObject Appender is
- * not an interface.
- *
- * \note All the functions declared in this class are thread-safe.
- *
- * \note The ownership and lifetime of objects of this class are managed.
- * See \ref Ownership "Object ownership" for more details.
- */
- class LOG4QT_EXPORT Appender : public LogObject
- {
- Q_OBJECT
-
- /*!
- * The property holds the Layout used by the Appender.
- *
- * \sa layout(), setLayout()
- */
- Q_PROPERTY(Layout* layout READ layout WRITE setLayout)
-
- /*!
- * The property holds the name of the Appender.
- *
- * \sa name(), setName()
- */
- Q_PROPERTY(QString name READ name WRITE setName)
-
- /*!
- * The property holds if the Appender requires a Layout or not.
- *
- * \sa requiresLayout(), setRequiresLayout()
- */
- Q_PROPERTY(bool requiresLayout READ requiresLayout)
-
- public:
- Appender(QObject *pParent = 0);
- virtual ~Appender();
- private:
- Appender(const Appender &rOther); // Not implemented
- Appender &operator=(const Appender &rOther); // Not implemented
-
- public:
- // JAVA: ErrorHandler* errorHandler();
- virtual Filter *filter() const = 0;
- virtual QString name() const = 0;
- virtual Layout *layout() const = 0;
- virtual bool requiresLayout() const = 0;
- // JAVA: void setErrorHandler(ErrorHandler *pErrorHandler);
- virtual void setLayout(Layout *pLayout) = 0;
- virtual void setName(const QString &rName) = 0;
-
- virtual void addFilter(Filter *pFilter) = 0;
- virtual void clearFilters() = 0;
- virtual void close() = 0;
- virtual void doAppend(const LoggingEvent &rEvent) = 0;
- };
-
-
- /**************************************************************************
- * Operators, Helper
- **************************************************************************/
-
-
- /**************************************************************************
- * Inline
- **************************************************************************/
-
- inline Appender::Appender(QObject *pParent) :
- LogObject(pParent)
- {}
-
- inline Appender::~Appender()
- {}
-
-
-} // namespace Log4Qt
-
-
-//Q_DECLARE_TYPEINFO(::Appender, Q_COMPLEX_TYPE); // Use default
-//Q_DECLARE_TYPEINFO(Log4Qt::LogObjectPtr<Log4Qt::Appender>, Q_MOVABLE_TYPE);
-
-
-#endif // LOG4QT_APPENDER_H