Warning, file /pim/kalarm/src/rtcwakeaction.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002  *  rtcwakeaction.h  -  KAuth helper application to execute rtcwake commands
0003  *  Program:  kalarm
0004  *  SPDX-FileCopyrightText: 2011 David Jarvie <djarvie@kde.org>
0005  *
0006  *  SPDX-License-Identifier: GPL-2.0-or-later
0007  */
0008 #include <QObject>
0009 #pragma once
0010 #include <KAuth/ActionReply>
0011 #include <KAuth/HelperSupport>
0012 
0013 using namespace KAuth;
0014 
0015 class RtcWakeAction : public QObject
0016 {
0017     Q_OBJECT
0018 public:
0019     RtcWakeAction();
0020 
0021 public Q_SLOTS:
0022     KAuth::ActionReply settimer(const QVariantMap& args);
0023 };
0024 
0025 // vim: et sw=4: