mirror of
https://github.com/YACReader/yacreader
synced 2025-12-30 13:02:44 -05:00
17 lines
308 B
C++
17 lines
308 B
C++
#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
|