Cutelyst  2.13.0
staticcompressed.h
1 /*
2  * Copyright (C) 2017 Matthias Fehring <kontakt@buschmann23.de>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18 #ifndef STATICCOMPRESSED_H
19 #define STATICCOMPRESSED_H
20 
21 #include <Cutelyst/cutelyst_global.h>
22 #include <Cutelyst/Plugin>
23 
24 namespace Cutelyst {
25 
26 class StaticCompressedPrivate;
27 
138 class CUTELYST_PLUGIN_STATICCOMPRESSED_EXPORT StaticCompressed : public Plugin
139 {
140  Q_OBJECT
141  Q_DECLARE_PRIVATE(StaticCompressed)
142 public:
146  explicit StaticCompressed(Application *parent);
147 
151  virtual ~StaticCompressed() override;
152 
159  void setIncludePaths(const QStringList &paths);
160 
165  void setDirs(const QStringList &dirs);
166 
173  virtual bool setup(Application *app) override;
174 
175 protected:
176  QScopedPointer<StaticCompressedPrivate> d_ptr;
177 };
178 
179 }
180 
181 #endif // STATICCOMPRESSED_H
Cutelyst::Plugin
Definition: plugin.h:30
Cutelyst::Application
The Cutelyst Application.
Definition: application.h:55
Cutelyst::StaticCompressed
Deliver static files compressed on the fly or precompressed.
Definition: staticcompressed.h:138
Cutelyst
The Cutelyst namespace holds all public Cutelyst API.
Definition: Mainpage.dox:7