mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
Added a new class for storing YACReaderHttpSession objects.
This commit is contained in:
parent
d2e3b51089
commit
45ab9bc71f
@ -20,7 +20,8 @@ HEADERS += \
|
||||
$$PWD/controllers/versioncontroller.h \
|
||||
$$PWD/controllers/foldercontentcontroller.h \
|
||||
$$PWD/controllers/tagscontroller.h \
|
||||
$$PWD/yacreader_http_session.h
|
||||
$$PWD/yacreader_http_session.h \
|
||||
$$PWD/yacreader_http_session_store.h
|
||||
|
||||
SOURCES += \
|
||||
$$PWD/static.cpp \
|
||||
@ -41,7 +42,8 @@ SOURCES += \
|
||||
$$PWD/controllers/versioncontroller.cpp \
|
||||
$$PWD/controllers/foldercontentcontroller.cpp \
|
||||
$$PWD/controllers/tagscontroller.cpp \
|
||||
$$PWD/yacreader_http_session.cpp
|
||||
$$PWD/yacreader_http_session.cpp \
|
||||
$$PWD/yacreader_http_session_store.cpp
|
||||
|
||||
include(lib/logging/logging.pri)
|
||||
include(lib/httpserver/httpserver.pri)
|
||||
|
6
YACReaderLibrary/server/yacreader_http_session_store.cpp
Normal file
6
YACReaderLibrary/server/yacreader_http_session_store.cpp
Normal file
@ -0,0 +1,6 @@
|
||||
#include "yacreader_http_session_store.h"
|
||||
|
||||
YACReaderHttpSessionStore::YACReaderHttpSessionStore(QObject *parent) : QObject(parent)
|
||||
{
|
||||
|
||||
}
|
17
YACReaderLibrary/server/yacreader_http_session_store.h
Normal file
17
YACReaderLibrary/server/yacreader_http_session_store.h
Normal file
@ -0,0 +1,17 @@
|
||||
#ifndef YACREADERHTTPSESSIONSTORE_H
|
||||
#define YACREADERHTTPSESSIONSTORE_H
|
||||
|
||||
#include <QObject>
|
||||
|
||||
class YACReaderHttpSessionStore : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit YACReaderHttpSessionStore(QObject *parent = 0);
|
||||
|
||||
signals:
|
||||
|
||||
public slots:
|
||||
};
|
||||
|
||||
#endif // YACREADERHTTPSESSIONSTORE_H
|
Loading…
Reference in New Issue
Block a user