blob: cc27260f62c15e3787479f5f34497770270d4409 (
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
24
25
|
#ifndef IncDecVolumeCommandLineOption_H
#define IncDecVolumeCommandLineOption_H
#include <QString>
#include <QObject>
#include <qmmpui/commandlineoption.h>
#include <qmmpui/control.h>
#include <qmmpui/commandlinemanager.h>
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, CommandLineManager* clm, Control* ctrl);
virtual QTranslator *createTranslator(QObject *parent);
};
#endif
|