aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Misc/CommandLineOptions/IncDecVolumeOption/incdecvolumeoption.h
blob: 6fbf3d24aaf5243cd3dbf35bcb4856f5803414fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef IncDecVolumeCommandLineOption_H
#define IncDecVolumeCommandLineOption_H 

#include <commandlineoption.h>

#include <QString>
#include <QObject>

class MainWindow;

class IncDecVolumeCommandLineOption : public QObject, public CommandLineOption
{
Q_OBJECT
Q_INTERFACES(CommandLineOption)
public:
    virtual bool identify(const QString& opt_str)const;
    virtual const QString name()const;
    virtual const QString helpString()const;
    virtual void executeCommand(const QString& opt_str,MainWindow* mw);
};

#endif