Files @ 7291e4c1ca28
Branch filter:

Location: libtransport.git/3rdparty/o2/src/o2abstractstore.h

Jan Kaluza
Add 3rdparty oauth 2 library
#ifndef O2ABSTRACTSTORE_H
#define O2ABSTRACTSTORE_H

#include <QObject>
#include <QString>

class O2AbstractStore: public QObject
{
    Q_OBJECT

public:

    explicit O2AbstractStore(QObject *parent = 0): QObject(parent) {
    }

    virtual ~O2AbstractStore() {
    }

    virtual QString value(const QString &key, const QString &defaultValue = QString()) = 0;

    virtual void setValue(const QString &key, const QString &value) = 0;
};

#endif // O2ABSTRACTSTORE_H