kwave  18.07.70
AboutPlugin.h
Go to the documentation of this file.
1 /***************************************************************************
2  AboutPlugin.h - plugin that shows the Kwave's about dialog
3  -------------------
4  begin : Sun Oct 29 2000
5  copyright : (C) 2000 by Thomas Eschenbacher
6  email : Thomas.Eschenbacher@gmx.de
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #ifndef ABOUT_PLUGIN_H
19 #define ABOUT_PLUGIN_H
20 
21 #include "config.h"
22 
23 #include "libkwave/Plugin.h"
24 
25 class QStringList;
26 
27 namespace Kwave
28 {
29  class AboutPlugin: public Kwave::Plugin
30  {
31  Q_OBJECT
32 
33  public:
34 
40  AboutPlugin(QObject *parent, const QVariantList &args);
41 
43  virtual ~AboutPlugin() Q_DECL_OVERRIDE {}
44 
46  virtual QString name() const Q_DECL_OVERRIDE { return _("about"); }
47 
52  virtual int start(QStringList &params) Q_DECL_OVERRIDE;
53 
54  };
55 }
56 
57 #endif /* ABOUT_PLUGIN_H */
58 
59 //***************************************************************************
60 //***************************************************************************
Definition: App.h:33
virtual int start(QStringList &params) Q_DECL_OVERRIDE
Definition: AboutPlugin.cpp:38
AboutPlugin(QObject *parent, const QVariantList &args)
Definition: AboutPlugin.cpp:32
virtual QString name() const Q_DECL_OVERRIDE
Definition: AboutPlugin.h:46
#define _(m)
Definition: memcpy.c:66
virtual ~AboutPlugin() Q_DECL_OVERRIDE
Definition: AboutPlugin.h:43