diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2015-10-29 21:47:08 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-10-30 10:36:52 -0700 |
commit | 8dad3457ef1f412517c4d81f08ebd14680788ec3 (patch) | |
tree | fd98ffd89584e4fa7a295b0116e8594a94c92e07 /desktop-widgets/plugins/facebook/facebook_integration.cpp | |
parent | 391172240ae00e9729ddb9db1b2cd50be3feb51b (diff) | |
download | subsurface-8dad3457ef1f412517c4d81f08ebd14680788ec3.tar.gz |
Make the skeleton Facebook plugin and make sure it is loaded
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>
Diffstat (limited to 'desktop-widgets/plugins/facebook/facebook_integration.cpp')
-rw-r--r-- | desktop-widgets/plugins/facebook/facebook_integration.cpp | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/desktop-widgets/plugins/facebook/facebook_integration.cpp b/desktop-widgets/plugins/facebook/facebook_integration.cpp index e69de29bb..e9b2297a0 100644 --- a/desktop-widgets/plugins/facebook/facebook_integration.cpp +++ b/desktop-widgets/plugins/facebook/facebook_integration.cpp @@ -0,0 +1,36 @@ +#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() +{ + +} |