Timesheets-Server
Timesheets server
Načítám...
Vyhledávám...
Nebylo nic nalezeno
sessionstore.h
Zobrazit dokumentaci tohoto souboru.
1
7#ifndef _SessionStore_H_
8#define _SessionStore_H_
9
10#include <QObject>
11#include "httpsessionstore.h"
12#include "httpsettings.h"
13
14namespace Httpd {
15
19class SessionStore : public HobrasoftHttpd::HttpSessionStore {
20 Q_OBJECT
21 public:
22
26 static SessionStore *sessionStore(const HobrasoftHttpd::HttpSettings *settings = NULL, QObject *parent = NULL);
27
28 private:
29 #ifndef DOXYGEN_SHOULD_SKIP_THIS
30 SessionStore(const HobrasoftHttpd::HttpSettings *settings, QObject *parent);
31
32 static SessionStore *m_sessionStore;
33 #endif
34};
35
36}
37
38#endif
Seesion store - zajišťuje singleton instanci třídy.
static SessionStore * sessionStore(const HobrasoftHttpd::HttpSettings *settings=NULL, QObject *parent=NULL)
Vrací ukazatel na singleton instanci třídy.
Jmenný prostor pro obsluhu konkrétních HTTP požadavků aplikace.