~neon/project-neon/libmm-qt

« back to all changes in this revision

Viewing changes to src/dbus/signalinterface.h

  • Committer: Jan Grulich
  • Date: 2015-03-30 14:41:44 UTC
  • mfrom: (165.1.61)
  • Revision ID: git-v1:282555c870d819103bdbee10d4cec738db394ad6
Merge branch 'frameworks'

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#include <QtCore/QVariant>
21
21
#include <QtDBus/QtDBus>
22
22
#include "generictypes.h"
23
 
#include "generictypes_p.h"
24
23
 
25
24
/*
26
25
 * Proxy class for interface org.freedesktop.ModemManager1.Modem.Signal
30
29
    Q_OBJECT
31
30
public:
32
31
    static inline const char *staticInterfaceName()
 
32
#ifdef MMQT_STATIC
 
33
    { return "org.kde.fakemodem.Modem.Signal"; }
 
34
#else
33
35
    { return "org.freedesktop.ModemManager1.Modem.Signal"; }
34
 
 
 
36
#endif
35
37
public:
36
38
    OrgFreedesktopModemManager1ModemSignalInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = 0);
37
39