File indexing completed on 2024-04-28 03:51:53

0001 /*
0002     This file is part of the KDE Baloo project.
0003     SPDX-FileCopyrightText: 2015 Vishesh Handa <vhanda@kde.org>
0004 
0005     SPDX-License-Identifier: LGPL-2.1-or-later
0006 */
0007 
0008 #ifndef BALOO_STATUSCOMMAND_H
0009 #define BALOO_STATUSCOMMAND_H
0010 
0011 #include "command.h"
0012 
0013 namespace Baloo {
0014 
0015 class StatusCommand : public Command
0016 {
0017 public:
0018     QString command() override;
0019     QString description() override;
0020 
0021     int exec(const QCommandLineParser& parser) override;
0022 };
0023 }
0024 
0025 #endif // BALOO_STATUSCOMMAND_H