78 lines
1.8 KiB
C++
78 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: MouseEvent; Pseudo Package specification
|
|
|
|
//## Subsystem: lab7
|
|
|
|
//## Source file: H:\kurs\avC++\lab7\MosEvent.h
|
|
|
|
|
|
|
|
#ifndef MosEvent_h
|
|
|
|
#define MosEvent_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: MouseEvent
|
|
|
|
//## Category: lab7
|
|
|
|
//## Subsystem: lab7
|
|
|
|
//## Persistence: Transient
|
|
|
|
//## Cardinality/Multiplicity: n
|
|
|
|
|
|
|
|
class MouseEvent : public Event //## Inherits: <unnamed>
|
|
|
|
{
|
|
|
|
//## begin MouseEvent.initialDeclarations preserve=yes
|
|
|
|
//## end MouseEvent.initialDeclarations
|
|
|
|
|
|
|
|
public:
|
|
|
|
//## Constructors (generated)
|
|
|
|
MouseEvent();
|
|
|
|
|
|
|
|
//## Destructor (generated)
|
|
|
|
~MouseEvent();
|
|
|
|
|
|
|
|
// Additional Public Declarations
|
|
|
|
//## begin MouseEvent.public preserve=yes
|
|
|
|
//## end MouseEvent.public
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Additional Protected Declarations
|
|
|
|
//## begin MouseEvent.protected preserve=yes
|
|
|
|
//## end MouseEvent.protected
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Additional Private Declarations
|
|
|
|
//## begin MouseEvent.private preserve=yes
|
|
|
|
//## end MouseEvent.private
|
|
|
|
|
|
|
|
private: //## implementation
|
|
|
|
// Additional Implementation Declarations
|
|
|
|
//## begin MouseEvent.implementation preserve=yes
|
|
|
|
//## end MouseEvent.implementation
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
//## begin MouseEvent.postscript preserve=yes
|
|
|
|
//## end MouseEvent.postscript
|
|
|
|
|
|
|
|
// Class MouseEvent
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//## begin module.epilog preserve=yes
|
|
|
|
//## end module.epilog
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|