Akonadi Contacts

qskypedialer.h
1 /*
2  This file is part of Akonadi Contact.
3 
4  SPDX-FileCopyrightText: 2009 Tobias Koenig <[email protected]>
5 
6  SPDX-License-Identifier: LGPL-2.0-or-later
7 */
8 
9 #pragma once
10 
11 #include "qdialer.h"
12 
13 #include <QString>
14 
15 class QDBusInterface;
16 
17 class QSkypeDialer : public QDialer
18 {
19 public:
20  explicit QSkypeDialer(const QString &applicationName);
21  ~QSkypeDialer() override;
22 
23  Q_REQUIRED_RESULT bool dialNumber(const QString &number) override;
24  Q_REQUIRED_RESULT bool sendSms(const QString &number, const QString &text) override;
25 
26 private:
27  bool initializeSkype();
28 
29  QDBusInterface *mInterface = nullptr;
30 };
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Sat Apr 1 2023 04:09:05 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.