~ubuntu-branches/ubuntu/precise/networkmanagement/precise

« back to all changes in this revision

Viewing changes to .pc/015_git-785023bf778b7cabbb482cac74b20896a07cb82f.patch/kded/service.h

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2011-10-23 14:00:13 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20111023140013-e38hdzybcg6zndrk
Tags: 0.9~svngit.nm09.20111023.ff842e-0ubuntu1
* New upstream snapshot.
* Drop all patches, merged upstream.
* Add kubuntu_add_subdirectory_po.diff to build the translations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
Copyright 2009 Dario Freddi <drf54321@gmail.com>
3
 
Copyright 2009 Will Stephenson <wstephenson@kde.org>
4
 
 
5
 
This program is free software; you can redistribute it and/or
6
 
modify it under the terms of the GNU General Public License as
7
 
published by the Free Software Foundation; either version 2 of
8
 
the License or (at your option) version 3 or any later version
9
 
accepted by the membership of KDE e.V. (or its successor approved
10
 
by the membership of KDE e.V.), which shall act as a proxy
11
 
defined in Section 14 of version 3 of the license.
12
 
 
13
 
This program is distributed in the hope that it will be useful,
14
 
but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 
GNU General Public License for more details.
17
 
 
18
 
You should have received a copy of the GNU General Public License
19
 
along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
 
*/
21
 
 
22
 
#ifndef KNM08_KDED_SERVICE_H
23
 
#define KNM08_KDED_SERVICE_H
24
 
 
25
 
#include <KDEDModule>
26
 
 
27
 
#include <QVariant>
28
 
 
29
 
class NetworkManagementServicePrivate;
30
 
 
31
 
class NetworkManagementService : public KDEDModule
32
 
{
33
 
Q_OBJECT
34
 
Q_DECLARE_PRIVATE(NetworkManagementService)
35
 
public:
36
 
    NetworkManagementService(QObject * parent, const QVariantList&);
37
 
    virtual ~NetworkManagementService();
38
 
private:
39
 
    NetworkManagementServicePrivate * d_ptr;
40
 
};
41
 
 
42
 
#endif // KNM08_KDED_SERVICE_H