File indexing completed on 2024-05-19 04:58:06

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 BEHAVIORCONFIG_H
0010 #define BEHAVIORCONFIG_H
0011 
0012 #include <KCModule>
0013 
0014 class BehaviorConfig : public KCModule
0015 {
0016     Q_OBJECT
0017 
0018 public:
0019     BehaviorConfig(QWidget *parent, const QVariantList &args) ;
0020     ~BehaviorConfig();
0021 
0022     virtual void save() override;
0023     virtual void load() override;
0024 
0025 private:
0026     class Private;
0027     Private *d;
0028 };
0029 
0030 #endif