mirror of
https://github.com/YACReader/yacreader
synced 2025-07-18 21:14:33 -04:00
Format code using clang-format
This commit is contained in:
@ -4,28 +4,24 @@
|
||||
#include <QObject>
|
||||
#include <QtCore>
|
||||
|
||||
|
||||
|
||||
class HttpSessionStore;
|
||||
class YACReaderHttpSession;
|
||||
|
||||
|
||||
|
||||
class YACReaderHttpSessionStore : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit YACReaderHttpSessionStore(HttpSessionStore *sessionStore, QObject *parent = 0);
|
||||
|
||||
void addYACReaderHttpSession(const QByteArray & httpSessionId, YACReaderHttpSession *yacreaderHttpSession);
|
||||
YACReaderHttpSession *getYACReaderSessionHttpSession(const QByteArray & httpSessionId);
|
||||
void addYACReaderHttpSession(const QByteArray &httpSessionId, YACReaderHttpSession *yacreaderHttpSession);
|
||||
YACReaderHttpSession *getYACReaderSessionHttpSession(const QByteArray &httpSessionId);
|
||||
|
||||
signals:
|
||||
|
||||
public slots:
|
||||
|
||||
private:
|
||||
QMap<QByteArray, YACReaderHttpSession*> sessions;
|
||||
QMap<QByteArray, YACReaderHttpSession *> sessions;
|
||||
HttpSessionStore *sessionStore;
|
||||
QTimer cleanupTimer;
|
||||
|
||||
|
Reference in New Issue
Block a user