~ubuntu-branches/ubuntu/quantal/kactivities/quantal

« back to all changes in this revision

Viewing changes to service/Plugin.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-13 11:53:27 UTC
  • Revision ID: package-import@ubuntu.com-20111213115327-vqhdel92qx65us8y
Tags: upstream-4.7.90
ImportĀ upstreamĀ versionĀ 4.7.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *   Copyright (C) 2011 Ivan Cukic <ivan.cukic(at)kde.org>
 
3
 *
 
4
 *   This program is free software; you can redistribute it and/or modify
 
5
 *   it under the terms of the GNU General Public License version 2,
 
6
 *   or (at your option) any later version, as published by the Free
 
7
 *   Software Foundation
 
8
 *
 
9
 *   This program is distributed in the hope that it will be useful,
 
10
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 *   GNU General Public License for more details
 
13
 *
 
14
 *   You should have received a copy of the GNU General Public
 
15
 *   License along with this program; if not, write to the
 
16
 *   Free Software Foundation, Inc.,
 
17
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
18
 */
 
19
 
 
20
#include "Plugin.h"
 
21
 
 
22
class Plugin::Private {
 
23
public:
 
24
    SharedInfo * sharedInfo;
 
25
};
 
26
 
 
27
Plugin::Plugin(QObject * parent)
 
28
    : QObject(parent), d(new Private())
 
29
{
 
30
}
 
31
 
 
32
Plugin::~Plugin()
 
33
{
 
34
    delete d;
 
35
}
 
36
 
 
37
void Plugin::addEvents(const EventList & events)
 
38
{
 
39
    Q_UNUSED(events)
 
40
}
 
41
 
 
42
void Plugin::setResourceMimeType(const QString & uri, const QString & mimetype)
 
43
{
 
44
    Q_UNUSED(uri)
 
45
    Q_UNUSED(mimetype)
 
46
}
 
47
 
 
48
void Plugin::setSharedInfo(SharedInfo * sharedInfo)
 
49
{
 
50
    d->sharedInfo = sharedInfo;
 
51
}
 
52
 
 
53
SharedInfo * Plugin::sharedInfo() const
 
54
{
 
55
    return d->sharedInfo;
 
56
}
 
57
 
 
58
bool Plugin::init()
 
59
{
 
60
    return true;
 
61
}