C++ Web Framework  3.0
properties.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 PROPERTIES_H
9 #define PROPERTIES_H
10 
11 #include <QString>
12 #include <QStringList>
13 #include "cppwebframework_global.h"
14 
15 CWF_BEGIN_NAMESPACE
19 class CPPWEBFRAMEWORKSHARED_EXPORT Properties
20 {
21 public:
22  QString m_class;
23  QString m_method;
28  explicit Properties(const QString &classAndMethod);
29 };
30 
31 CWF_END_NAMESPACE
32 
33 #endif // PROPERTIES_H
The Properties class is an auxiliar class to the CSTLCompiler.
Definition: properties.h:19