81 lines
1.8 KiB
C++
81 lines
1.8 KiB
C++
//## begin module.cm preserve=no
|
|
|
|
// %X% %Q% %Z% %W%
|
|
|
|
//## end module.cm
|
|
|
|
|
|
|
|
//## begin module.cp preserve=no
|
|
|
|
//## end module.cp
|
|
|
|
|
|
|
|
//## Module: BH; Pseudo Package specification
|
|
|
|
//## Subsystem: lab7
|
|
|
|
//## Source file: H:\kurs\avC++\lab7\BttnHndl.h
|
|
|
|
|
|
|
|
#ifndef BttnHndl_h
|
|
|
|
#define BttnHndl_h 1
|
|
|
|
|
|
|
|
//## begin module.additionalIncludes preserve=no
|
|
|
|
//## end module.additionalIncludes
|
|
|
|
|
|
|
|
//## begin module.includes preserve=yes
|
|
|
|
//## end module.includes
|
|
|
|
|
|
|
|
//## begin module.additionalDeclarations preserve=yes
|
|
|
|
//## end module.additionalDeclarations
|
|
|
|
|
|
|
|
|
|
|
|
//## Class: BH; Abstract
|
|
|
|
//## Category: lab7
|
|
|
|
//## Subsystem: lab7
|
|
|
|
//## Persistence: Transient
|
|
|
|
//## Cardinality/Multiplicity: n
|
|
|
|
|
|
|
|
class BH
|
|
|
|
{
|
|
|
|
//## begin BH.initialDeclarations preserve=yes
|
|
|
|
//## end BH.initialDeclarations
|
|
|
|
|
|
|
|
public:
|
|
|
|
//## Constructors (generated)
|
|
|
|
BH();
|
|
|
|
|
|
|
|
//## Destructor (generated)
|
|
|
|
~BH();
|
|
|
|
|
|
|
|
|
|
|
|
//## Other Operations (specified)
|
|
|
|
//## Operation: doOnClick%941103435
|
|
|
|
virtual void doOnClick () = 0;
|
|
|
|
|
|
|
|
// Additional Public Declarations
|
|
|
|
//## begin BH.public preserve=yes
|
|
|
|
//## end BH.public
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Additional Protected Declarations
|
|
|
|
//## begin BH.protected preserve=yes
|
|
|
|
//## end BH.protected
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Additional Private Declarations
|
|
|
|
//## begin BH.private preserve=yes
|
|
|
|
//## end BH.private
|
|
|
|
|
|
|
|
private: //## implementation
|
|
|
|
// Additional Implementation Declarations
|
|
|
|
//## begin BH.implementation preserve=yes
|
|
|
|
//## end BH.implementation
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
//## begin BH.postscript preserve=yes
|
|
|
|
//## end BH.postscript
|
|
|
|
|
|
|
|
// Class BH
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//## begin module.epilog preserve=yes
|
|
|
|
//## end module.epilog
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|