File indexing completed on 2024-05-12 05:48:34

0001 /*
0002     SPDX-FileCopyrightText: 2007 Nicolas Ternisien <nicolas.ternisien@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <QStringList>
0010 
0011 #include "logModeConfiguration.h"
0012 
0013 #include "defaults.h"
0014 #include "ksystemlog_debug.h"
0015 
0016 #include "apacheLogMode.h"
0017 
0018 #include "ksystemlogConfig.h"
0019 
0020 class ApacheConfiguration : public LogModeConfiguration
0021 {
0022     Q_OBJECT
0023 
0024 public:
0025     ApacheConfiguration();
0026 
0027     ~ApacheConfiguration() override;
0028 
0029     QStringList apachePaths() const;
0030 
0031     QStringList apacheAccessPaths() const;
0032 
0033     void setApachePaths(const QStringList &apachePaths);
0034 
0035     void setApacheAccessPaths(const QStringList &apacheAccessPaths);
0036 
0037 private:
0038     QStringList mApachePaths;
0039 
0040     QStringList mApacheAccessPaths;
0041 };