46 lines
1.0 KiB
C++
46 lines
1.0 KiB
C++
#include <windows.h>
|
|
|
|
//## end module.includes
|
|
|
|
|
|
|
|
// MenuBH
|
|
|
|
#include "Menu.h"
|
|
|
|
//## begin module.additionalDeclarations preserve=yes
|
|
|
|
//## end module.additionalDeclarations
|
|
|
|
|
|
|
|
|
|
|
|
// Class MenuBH
|
|
|
|
|
|
|
|
MenuBH::MenuBH()
|
|
|
|
//## begin MenuBH::MenuBH%.hasinit preserve=no
|
|
|
|
//## end MenuBH::MenuBH%.hasinit
|
|
|
|
//## begin MenuBH::MenuBH%.initialization preserve=yes
|
|
|
|
//## end MenuBH::MenuBH%.initialization
|
|
|
|
{
|
|
|
|
//## begin MenuBH::MenuBH%.body preserve=yes
|
|
|
|
//## end MenuBH::MenuBH%.body
|
|
|
|
}
|
|
|
|
|
|
|
|
MenuBH::~MenuBH()
|
|
|
|
{
|
|
|
|
//## begin MenuBH::~MenuBH%.body preserve=yes
|
|
|
|
//## end MenuBH::~MenuBH%.body
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//## Other Operations (implementation)
|
|
|
|
void MenuBH::doOnClick ()
|
|
|
|
{
|
|
|
|
//## begin MenuBH::doOnClick%940854121.body preserve=yes
|
|
|
|
MessageBeep(0xFFFFFFFF);
|
|
|
|
//## end MenuBH::doOnClick%940854121.body
|
|
|
|
}
|
|
|
|
|
|
|
|
// Additional Declarations
|
|
|
|
//## begin MenuBH.declarations preserve=yes
|
|
|
|
//## end MenuBH.declarations
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//## begin module.epilog preserve=yes
|
|
|
|
//## end module.epilog
|
|
|