SVN_SILENT made messages (.desktop file)
[kdepim.git] / korgac / korgacagent.h
blobe66c38e58c6d62b5a34f8bfcb1245861eb7e7e05
1 /*
2 This file is part of the KDE reminder agent.
4 Copyright (c) 2010 Volker Krause <vkrause@kde.org>
6 This library is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Library General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or (at your
9 option) any later version.
11 This library is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
14 License for more details.
16 You should have received a copy of the GNU Library General Public License
17 along with this library; see the file COPYING.LIB. If not, write to the
18 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 02110-1301, USA.
22 #ifndef KORGAC_KORGACAGENT_H
23 #define KORGAC_KORGACAGENT_H
25 #include <Akonadi/AgentBase>
27 class KOAlarmClient;
29 namespace Akonadi {
31 class KorgacAgent : public AgentBase, public AgentBase::ObserverV2
33 Q_OBJECT
35 public:
36 explicit KorgacAgent( const QString &id );
37 ~KorgacAgent();
39 private:
40 KOAlarmClient *m_alarmClient;
46 #endif