mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-29 06:12:18 -06:00
16 lines
269 B
C++
16 lines
269 B
C++
#ifndef _menubug_menubug_h
|
|
#define _menubug_menubug_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
class MenuBug : public TopWindow {
|
|
public:
|
|
typedef MenuBug CLASSNAME;
|
|
MenuBug();
|
|
|
|
virtual void RightDown(Point pt, dword keyflags);
|
|
};
|
|
|
|
#endif
|