akonadi
qdialer.h
00001 /* 00002 This file is part of Akonadi Contact. 00003 00004 Copyright (c) 2009 Tobias Koenig <tokoe@kde.org> 00005 2010 Bjoern Ricks <bjoern.ricks@intevation.de> 00006 00007 00008 This library is free software; you can redistribute it and/or modify it 00009 under the terms of the GNU Library General Public License as published by 00010 the Free Software Foundation; either version 2 of the License, or (at your 00011 option) any later version. 00012 00013 This library is distributed in the hope that it will be useful, but WITHOUT 00014 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00015 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public 00016 License for more details. 00017 00018 You should have received a copy of the GNU Library General Public License 00019 along with this library; see the file COPYING.LIB. If not, write to the 00020 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 00021 02110-1301, USA. 00022 */ 00023 00024 #ifndef QDIALER_H 00025 #define QDIALER_H 00026 00027 #include <QtCore/QString> 00028 00029 class QDialer 00030 { 00031 public: 00032 QDialer( const QString &applicationName ); 00033 virtual ~QDialer(); 00034 00035 virtual bool dialNumber( const QString &number ); 00036 virtual bool sendSms( const QString &number, const QString &text ); 00037 00038 QString errorMessage() const; 00039 00040 protected: 00041 QString mApplicationName; 00042 QString mErrorMessage; 00043 }; 00044 00045 #endif
This file is part of the KDE documentation.
Documentation copyright © 1996-2012 The KDE developers.
Generated on Thu May 10 2012 22:18:35 by doxygen 1.8.0 written by Dimitri van Heesch, © 1997-2006
Documentation copyright © 1996-2012 The KDE developers.
Generated on Thu May 10 2012 22:18:35 by doxygen 1.8.0 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.