mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-12 17:56:16 +00:00
36 lines
445 B
C++
36 lines
445 B
C++
#include "facebook_integration.h"
|
|
|
|
FacebookPlugin::FacebookPlugin(QObject* parent): QObject(parent)
|
|
{
|
|
|
|
}
|
|
|
|
bool FacebookPlugin::isConnected()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void FacebookPlugin::requestLogin()
|
|
{
|
|
|
|
}
|
|
|
|
void FacebookPlugin::requestLogoff()
|
|
{
|
|
|
|
}
|
|
|
|
QString FacebookPlugin::socialNetworkIcon() const
|
|
{
|
|
return QString();
|
|
}
|
|
|
|
QString FacebookPlugin::socialNetworkName() const
|
|
{
|
|
return tr("Facebook");
|
|
}
|
|
|
|
void FacebookPlugin::uploadCurrentDive()
|
|
{
|
|
|
|
}
|