File indexing completed on 2024-04-28 04:55:51

0001 /*
0002     This file is part of Choqok, the KDE micro-blogging client
0003 
0004     SPDX-FileCopyrightText: 2010-2012 Mehrdad Momeny <mehrdad.momeny@gmail.com>
0005     SPDX-FileCopyrightText: 2010-2011 Ramin Gomari <ramin.gomari@gmail.com>
0006 
0007     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0008 */
0009 
0010 #ifndef NOWLISTENING_H
0011 #define NOWLISTENING_H
0012 
0013 #include "plugin.h"
0014 
0015 /**
0016 Now Listening
0017 
0018 @author Mehrdad Momeny \<mehrdad.momeny@gmail.com\>
0019 @author Ramin Gomari \<ramin.gomari@gmail.com\>
0020 */
0021 class NowListening : public Choqok::Plugin
0022 {
0023     Q_OBJECT
0024 public:
0025     NowListening(QObject *parent, const QList< QVariant > &args);
0026     ~NowListening();
0027 
0028 protected Q_SLOTS:
0029     void slotPrepareNowListening();
0030 
0031 };
0032 
0033 #endif //NOWLISTENING_H