mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-01-17 22:38:33 +01:00
25 lines
402 B
C++
25 lines
402 B
C++
#ifndef TOMAHAWKOAUTHTWITTER
|
|
#define TOMAHAWKOAUTHTWITTER
|
|
|
|
#include <oauthtwitter.h>
|
|
|
|
#include "qtweetlib_global.h"
|
|
|
|
class QTWEETLIBSHARED_EXPORT TomahawkOAuthTwitter : public OAuthTwitter
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
TomahawkOAuthTwitter( QObject *parent = 0 );
|
|
|
|
~TomahawkOAuthTwitter() {}
|
|
|
|
protected:
|
|
virtual int authorizationWidget();
|
|
|
|
private slots:
|
|
void error();
|
|
};
|
|
|
|
#endif
|