Akonadi Contacts

qekigadialer.h
1 /*
2  SPDX-FileCopyrightText: 2013-2023 Laurent Montel <[email protected]>
3 
4  SPDX-License-Identifier: LGPL-2.0-or-later
5 
6 */
7 
8 #pragma once
9 
10 #include "qdialer.h"
11 class QDBusInterface;
12 
13 class QEkigaDialer : public QDialer
14 {
15 public:
16  explicit QEkigaDialer(const QString &applicationName);
17  ~QEkigaDialer() override;
18 
19  Q_REQUIRED_RESULT bool dialNumber(const QString &number) override;
20  Q_REQUIRED_RESULT bool sendSms(const QString &number, const QString &text) override;
21 
22 private:
23  bool initializeEkiga();
24  QDBusInterface *mInterface = nullptr;
25 };
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.