GstPipelineStudio/src/CustomMenuAction.h
Stéphane Cerveau 2d75a32dd0 Code cleanup
Use GNU formatter from Eclipse.
2017-05-31 21:50:51 +02:00

19 lines
384 B
C++

#ifndef CUSTOM_MENU_ACTION_H_
#define CUSTOM_MENU_ACTION_H_
#include <QAction>
class CustomMenuAction: public QAction
{
public:
CustomMenuAction(const QString& displayName, QObject * parent);
CustomMenuAction(const QString& displayName, const QString& name, QObject * parent);
QString getName() {return m_name;}
private:
QString m_name;
};
#endif //CUSTOM_MENU_ACTION_H_