//## begin module.cm preserve=no // %X% %Q% %Z% %W% //## end module.cm //## begin module.cp preserve=no //## end module.cp //## Module: KeyEvent; Pseudo Package specification //## Subsystem: lab7 //## Source file: H:\kurs\avC++\lab7\KeyEvent.h #ifndef KeyEvent_h #define KeyEvent_h 1 //## begin module.additionalIncludes preserve=no //## end module.additionalIncludes //## begin module.includes preserve=yes //## end module.includes // Event #include "Event.h" //## begin module.additionalDeclarations preserve=yes //## end module.additionalDeclarations //## Class: KeyEvent //## Category: lab7 //## Subsystem: lab7 //## Persistence: Transient //## Cardinality/Multiplicity: n class KeyEvent : public Event //## Inherits: { //## begin KeyEvent.initialDeclarations preserve=yes //## end KeyEvent.initialDeclarations public: //## Constructors (generated) KeyEvent(); //## Destructor (generated) ~KeyEvent(); // Additional Public Declarations //## begin KeyEvent.public preserve=yes //## end KeyEvent.public protected: // Additional Protected Declarations //## begin KeyEvent.protected preserve=yes //## end KeyEvent.protected private: // Additional Private Declarations //## begin KeyEvent.private preserve=yes //## end KeyEvent.private private: //## implementation // Additional Implementation Declarations //## begin KeyEvent.implementation preserve=yes //## end KeyEvent.implementation }; //## begin KeyEvent.postscript preserve=yes //## end KeyEvent.postscript // Class KeyEvent //## begin module.epilog preserve=yes //## end module.epilog #endif