PowerModeler/include/customMenu.h

16 lines
213 B
C
Raw Normal View History

2025-03-14 16:06:20 +08:00
#ifndef CUSTOMMENU_H
#define CUSTOMMENU_H
#include <QMenu>
class CustomMenu : public QMenu
{
Q_OBJECT
public:
CustomMenu(QWidget *parent = nullptr);
virtual ~CustomMenu();
};
#endif //CUSTOMMENU_H