mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Currently we need to copy manually the plugin dynamic library to the /plugins folder. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
36 lines
431 B
C++
36 lines
431 B
C++
#include "facebook_integration.h"
|
|
|
|
FacebookPlugin::FacebookPlugin(QObject* parent): QObject(parent)
|
|
{
|
|
|
|
}
|
|
|
|
bool FacebookPlugin::isConnected()
|
|
{
|
|
|
|
}
|
|
|
|
void FacebookPlugin::requestLogin()
|
|
{
|
|
|
|
}
|
|
|
|
void FacebookPlugin::requestLogoff()
|
|
{
|
|
|
|
}
|
|
|
|
QString FacebookPlugin::socialNetworkIcon() const
|
|
{
|
|
return QString();
|
|
}
|
|
|
|
QString FacebookPlugin::socialNetworkName() const
|
|
{
|
|
return tr("Facebook");
|
|
}
|
|
|
|
void FacebookPlugin::uploadCurrentDive()
|
|
{
|
|
|
|
}
|