File indexing completed on 2025-02-16 13:15:00
0001 // 0002 // C++ Interface: plugintemplate 0003 // 0004 // Description: plugintemplate 0005 // 0006 // 0007 // Author: YOUR-NAME, (C) 2007 0008 // 0009 // Copyright: See COPYING file that comes with this distribution 0010 // 0011 // 0012 #ifndef PLUGINTEMPLATE_H 0013 #define PLUGINTEMPLATE_H 0014 0015 #include <cplugin.h> 0016 #include <QVariantList> 0017 0018 class KMuddyPluginTemplate : public cPlugin 0019 { 0020 public: 0021 KMuddyPluginTemplate (QObject *, const QVariantList &); 0022 virtual ~KMuddyPluginTemplate (); 0023 }; 0024 0025 0026 #endif // PLUGIN_TEMPLATE_H 0027