~ubuntu-branches/ubuntu/precise/knemo/precise

« back to all changes in this revision

Viewing changes to src/knemod/backends/daemonregistry.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2010-01-06 17:16:51 UTC
  • mfrom: (1.1.9 upstream) (2.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100106171651-ff58ryfnav4l1zbm
Tags: 0.6.0-1
* New upstream release 
  - Fixes "FTBFS: sysbackend.cpp:362: error: 'KILO' was not declared in
  this scope" (Closes: #560496)
  - Fixes "context menu does not appear" (Closes: #504791)
* Add Build-Depends: libnl-dev - Linux netlink sockets library

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* This file is part of KNemo
2
 
   Copyright (C) 2006 Percy Leonhardt <percy@eris23.de>
3
 
   Copyright (C) 2009 John Stamp <jstamp@users.sourceforge.net>
4
 
 
5
 
   KNemo is free software; you can redistribute it and/or modify
6
 
   it under the terms of the GNU Library General Public License as
7
 
   published by the Free Software Foundation; either version 2 of
8
 
   the License, or (at your option) any later version.
9
 
 
10
 
   KNemo is distributed in the hope that it will be useful,
11
 
   but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
   GNU Library General Public License for more details.
14
 
 
15
 
   You should have received a copy of the GNU Library General Public License
16
 
   along with this library; see the file COPYING.LIB.  If not, write to
17
 
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18
 
   Boston, MA 02110-1301, USA.
19
 
*/
20
 
 
21
 
#ifndef DAEMONREGISTRY_H
22
 
#define DAEMONREGISTRY_H
23
 
 
24
 
#include "sysbackend.h"
25
 
#include "nettoolsbackend.h"
26
 
 
27
 
/**
28
 
 * This registry tells KNemo what backends are available
29
 
 * and how they can be created. It is only used by the daemon
30
 
 * to create the selected backend. Two registries were
31
 
 * necessary to avoid linking the KCM module against all backends.
32
 
 *
33
 
 * @short Registry for all backends
34
 
 * @author Percy Leonhardt <percy@eris23.de>
35
 
 */
36
 
 
37
 
struct DaemonRegistryEntry
38
 
{
39
 
    QString name;
40
 
    BackendBase* (*function) ( QHash<QString, Interface *>& );
41
 
};
42
 
 
43
 
DaemonRegistryEntry DaemonRegistry[] =
44
 
{
45
 
    { "Sys", SysBackend::createInstance },
46
 
    { "Nettools", NetToolsBackend::createInstance },
47
 
    { QString::null, 0 }
48
 
};
49
 
 
50
 
#endif // DAEMONREGISTRY_H