NuriaProject Framework  0.1
The NuriaProject Framework
memorytemplateloader.hpp
1 /* Copyright (c) 2014-2015, The Nuria Project
2  * The NuriaProject Framework is free software: you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public License as
4  * published by the Free Software Foundation, either version 3 of the License,
5  * or (at your option) any later version.
6  *
7  * The NuriaProject Framework is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public License
13  * along with The NuriaProject Framework.
14  * If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef NURIA_MEMORYTEMPLATELOADER_HPP
18 #define NURIA_MEMORYTEMPLATELOADER_HPP
19 
20 #include "templateloader.hpp"
21 #include "twig_global.hpp"
22 #include <QMap>
23 
24 namespace Nuria {
25 
26 class MemoryTemplateLoaderPrivate;
27 
36 class NURIA_TWIG_EXPORT MemoryTemplateLoader : public TemplateLoader {
37  Q_OBJECT
38 public:
39 
44  typedef QMap< QString, QByteArray > Map;
45 
51  explicit MemoryTemplateLoader (QObject *parent = 0);
52 
56  explicit MemoryTemplateLoader (Map map, QObject *parent = 0);
57 
59  ~MemoryTemplateLoader () override;
60 
62  Map map () const;
63 
65  void setMap (const Map &map);
66 
71  void addTemplate (const QString &name, const QByteArray &data);
72 
76  void removeTemplate (const QString &name);
77 
82  QByteArray load (const QString &name) override;
83 
84  bool hasTemplate (const QString &name) override;
85 
86 private:
87  MemoryTemplateLoaderPrivate *d_ptr;
88 
89 };
90 
91 }
92 
93 #endif // NURIA_MEMORYTEMPLATELOADER_HPP
Loader of template data for TemplateEngine.
Definition: templateloader.hpp:40
Definition: abstractsessionmanager.hpp:24
A template loader which stores templates in-memory.
Definition: memorytemplateloader.hpp:36
QMap< QString, QByteArray > Map
Definition: memorytemplateloader.hpp:44