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: 2008-2012 Mehrdad Momeny <mehrdad.momeny@gmail.com>
0005 
0006     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0007 */
0008 
0009 #ifndef SEARCHACTION_H
0010 #define SEARCHACTION_H
0011 
0012 #include "plugin.h"
0013 
0014 class SearchAction : public Choqok::Plugin
0015 {
0016     Q_OBJECT
0017 public:
0018     SearchAction(QObject *parent, const QList< QVariant > &args);
0019     ~SearchAction();
0020 
0021 protected Q_SLOTS:
0022     void slotSearch();
0023 };
0024 
0025 #endif // SEARCHACTION_H