Added a new class for storing YACReaderHttpSession objects.

This commit is contained in:
Luis Ángel San Martín 2016-06-24 17:26:51 +02:00
parent d2e3b51089
commit 45ab9bc71f
3 changed files with 27 additions and 2 deletions

View File

@ -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)

View File

@ -0,0 +1,6 @@
#include "yacreader_http_session_store.h"
YACReaderHttpSessionStore::YACReaderHttpSessionStore(QObject *parent) : QObject(parent)
{
}

View 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