Hobrasoft httpd server
Embedded HTTP server for Qt and C++
application.h
Go to the documentation of this file.
1 
5 #ifndef _Application_H_
6 #define _Application_H_
7 
8 #include <QObject>
9 #include "list.h"
10 
11 namespace Example {
12 
16 class Application : public QObject {
17  Q_OBJECT
18  public:
22  Application(QObject *);
23 
24  List *list() const;
25 
26  private:
27  #ifndef DOXYGEN_SHOULD_SKIP_THIS
28  List *m_list;
29  #endif
30 };
31 }
32 
33 #endif
34 
List of all items.
Definition: list.h:19
Namespace for Example.
Definition: application.h:11
Application(QObject *)
Constructor - makes the list and add some items to it.
Definition: application.cpp:11
List * list() const
Returns pointer to list of all items.
Definition: application.cpp:20
Example application.
Definition: application.h:16