File indexing completed on 2024-12-22 04:57:54

0001 /*
0002     SPDX-FileCopyrightText: 2016 Stefan Stäglich <sstaeglich@kdemail.net>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "o2/o1.h"
0010 
0011 class O1Tomboy : public O1
0012 {
0013     Q_OBJECT
0014 public:
0015     explicit O1Tomboy(QObject *parent = nullptr);
0016 
0017     void setBaseURL(const QString &value);
0018     QString getRequestToken() const;
0019 
0020     QString getRequestTokenSecret() const;
0021 
0022     void restoreAuthData(const QString &token, const QString &secret);
0023 };