16 lines
213 B
C
16 lines
213 B
C
|
|
#ifndef CUSTOMMENU_H
|
||
|
|
#define CUSTOMMENU_H
|
||
|
|
|
||
|
|
#include <QMenu>
|
||
|
|
|
||
|
|
class CustomMenu : public QMenu
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
CustomMenu(QWidget *parent = nullptr);
|
||
|
|
virtual ~CustomMenu();
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif //CUSTOMMENU_H
|