File indexing completed on 2024-04-28 04:39:45

0001 /*
0002     SPDX-FileCopyrightText: 2017 Friedrich W. H. Kossebau <kossebau@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-or-later
0005 */
0006 
0007 #ifndef SOURCEFORMATTERPLUGIN_H
0008 #define SOURCEFORMATTERPLUGIN_H
0009 
0010 #include <interfaces/iplugin.h>
0011 
0012 class SourceFormatterPlugin : public KDevelop::IPlugin
0013 {
0014     Q_OBJECT
0015 
0016 public:
0017     /**
0018      * Constructor with arguments as needed with KPluginFactory
0019      */
0020     SourceFormatterPlugin(QObject* parent, const QVariantList& args);
0021     ~SourceFormatterPlugin() override;
0022 
0023     int perProjectConfigPages() const override;
0024     KDevelop::ConfigPage* perProjectConfigPage(int number, const KDevelop::ProjectConfigOptions& options, QWidget* parent) override;
0025 
0026 private:
0027 };
0028 
0029 #endif // SOURCEFORMATTERPLUGIN_H