90 lines
2.1 KiB
C++
90 lines
2.1 KiB
C++
//## begin module.cm preserve=no
|
|
|
|
// %X% %Q% %Z% %W%
|
|
|
|
//## end module.cm
|
|
|
|
|
|
|
|
//## begin module.cp preserve=no
|
|
|
|
//## end module.cp
|
|
|
|
|
|
|
|
//## Module: BeepingBH; Pseudo Package specification
|
|
|
|
//## Subsystem: lab7
|
|
|
|
//## Source file: H:\kurs\avC++\lab7\BpngBttn.h
|
|
|
|
|
|
|
|
#ifndef BpngBttn_h
|
|
|
|
#define BpngBttn_h 1
|
|
|
|
|
|
|
|
//## begin module.additionalIncludes preserve=no
|
|
|
|
//## end module.additionalIncludes
|
|
|
|
|
|
|
|
//## begin module.includes preserve=yes
|
|
|
|
//## end module.includes
|
|
|
|
|
|
|
|
// Handler
|
|
|
|
#include "Handler.h"
|
|
|
|
// BH
|
|
|
|
#include "BttnHndl.h"
|
|
|
|
//## begin module.additionalDeclarations preserve=yes
|
|
|
|
//## end module.additionalDeclarations
|
|
|
|
|
|
|
|
|
|
|
|
//## Class: BeepingBH
|
|
|
|
//## Category: lab7
|
|
|
|
//## Subsystem: lab7
|
|
|
|
//## Persistence: Transient
|
|
|
|
//## Cardinality/Multiplicity: n
|
|
|
|
|
|
|
|
class BeepingBH : public Handler, //## Inherits: <unnamed>
|
|
|
|
public BH //## Inherits: <unnamed>
|
|
|
|
{
|
|
|
|
//## begin BeepingBH.initialDeclarations preserve=yes
|
|
|
|
//## end BeepingBH.initialDeclarations
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
//## Constructors (specified)
|
|
|
|
//## Operation: BeepingBH%941014000
|
|
|
|
BeepingBH ();
|
|
|
|
|
|
|
|
//## Destructor (generated)
|
|
|
|
~BeepingBH();
|
|
|
|
|
|
|
|
|
|
|
|
//## Other Operations (specified)
|
|
|
|
//## Operation: doOnClick%940854121
|
|
|
|
void doOnClick ();
|
|
|
|
|
|
|
|
// Additional Public Declarations
|
|
|
|
//## begin BeepingBH.public preserve=yes
|
|
|
|
//## end BeepingBH.public
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Data Members for Class Attributes
|
|
|
|
|
|
|
|
// Additional Protected Declarations
|
|
|
|
//## begin BeepingBH.protected preserve=yes
|
|
|
|
//## end BeepingBH.protected
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Additional Private Declarations
|
|
|
|
//## begin BeepingBH.private preserve=yes
|
|
|
|
//## end BeepingBH.private
|
|
|
|
|
|
|
|
private: //## implementation
|
|
|
|
// Additional Implementation Declarations
|
|
|
|
//## begin BeepingBH.implementation preserve=yes
|
|
|
|
//## end BeepingBH.implementation
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
//## begin BeepingBH.postscript preserve=yes
|
|
|
|
//## end BeepingBH.postscript
|
|
|
|
|
|
|
|
// Class BeepingBH
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//## begin module.epilog preserve=yes
|
|
|
|
//## end module.epilog
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|