kde-extraapps/kmix/core/MasterControl.h
Ivailo Monev 2e7f21de69 kmix: remove unused configuration checks
since Katie requires compiler with C++11 support the shared pointer
checks could be ommited

Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
2020-02-19 16:13:43 +00:00

30 lines
440 B
C++

/*
* MasterControl.h
*
* Created on: 02.01.2011
* Author: kde
*/
#ifndef MASTERCONTROL_H_
#define MASTERCONTROL_H_
#include <QString>
class MasterControl
{
public:
MasterControl();
virtual ~MasterControl();
QString getCard() const;
QString getControl() const;
void set(QString card, QString control);
bool isValid();
private:
QString card;
QString control;
};
#endif /* MASTERCONTROL_H_ */