C++ Web Framework  3.0
cstlcompilerimport.h
1 /*
2  Copyright 2017 Herik Lima de Castro and Marcelo Medeiros Eler
3  Distributed under MIT license, or public domain if desired and
4  recognized in your jurisdiction.
5  See file LICENSE for detail.
6 */
7 
8 #ifndef CSTLCOMPILERIMPORT_H
9 #define CSTLCOMPILERIMPORT_H
10 
11 #include <QMap>
12 #include <QFile>
13 #include <QString>
14 #include <QXmlStreamAttributes>
15 #include "cppwebframework_global.h"
16 
17 CWF_BEGIN_NAMESPACE
18 
22 class CPPWEBFRAMEWORKSHARED_EXPORT CSTLCompilerImport
23 {
24 public:
25  QMap<QString, QString> attributes;
29  CSTLCompilerImport(const QXmlStreamAttributes &attr, QString path);
30 };
31 
32 CWF_END_NAMESPACE
33 
34 #endif // CSTLCOMPILERIMPORT_H
Extracts and valites all attibutes from a "import" tag.
Definition: cstlcompilerimport.h:22