90 lines
2.3 KiB
C++
90 lines
2.3 KiB
C++
//## begin module.cm preserve=no
|
|
|
|
// %X% %Q% %Z% %W%
|
|
|
|
//## end module.cm
|
|
|
|
|
|
|
|
//## begin module.cp preserve=no
|
|
|
|
//## end module.cp
|
|
|
|
|
|
|
|
//## Module: DebugGraphics; Pseudo Package specification
|
|
|
|
//## Subsystem: Graphic
|
|
|
|
//## Source file: H:\WebDocs\skola\Avancerad_C++\Lab4\Rose\Graphic\DbgGrphc.h
|
|
|
|
|
|
|
|
#ifndef DbgGrphc_h
|
|
|
|
#define DbgGrphc_h 1
|
|
|
|
|
|
|
|
//## begin module.additionalIncludes preserve=no
|
|
|
|
//## end module.additionalIncludes
|
|
|
|
|
|
|
|
//## begin module.includes preserve=yes
|
|
|
|
//## end module.includes
|
|
|
|
|
|
|
|
// Graphics
|
|
|
|
#include "Graphic\Graphics.h"
|
|
|
|
//## begin module.additionalDeclarations preserve=yes
|
|
|
|
#include "H:\WebDocs\skola\Avancerad_C++\Lab4\Rose\Graphic\DbgGrphc.h"
|
|
|
|
//## end module.additionalDeclarations
|
|
|
|
|
|
|
|
|
|
|
|
//## Class: DebugGraphics
|
|
|
|
//## Category: Graphic
|
|
|
|
//## Subsystem: Graphic
|
|
|
|
//## Persistence: Transient
|
|
|
|
//## Cardinality/Multiplicity: n
|
|
|
|
|
|
|
|
class DebugGraphics : public Graphics //## Inherits: <unnamed>
|
|
|
|
{
|
|
|
|
//## begin DebugGraphics.initialDeclarations preserve=yes
|
|
|
|
//## end DebugGraphics.initialDeclarations
|
|
|
|
|
|
|
|
public:
|
|
|
|
//## Constructors (generated)
|
|
|
|
DebugGraphics();
|
|
|
|
|
|
|
|
//## Destructor (generated)
|
|
|
|
~DebugGraphics();
|
|
|
|
|
|
|
|
|
|
|
|
//## Other Operations (specified)
|
|
|
|
//## Operation: drawCircle%938586296
|
|
|
|
void drawCircle ();
|
|
|
|
|
|
|
|
//## Operation: drawRectangle%938586297
|
|
|
|
void drawRectangle ();
|
|
|
|
|
|
|
|
//## Operation: drawLine%938586298
|
|
|
|
void drawLine ();
|
|
|
|
|
|
|
|
// Additional Public Declarations
|
|
|
|
//## begin DebugGraphics.public preserve=yes
|
|
|
|
//## end DebugGraphics.public
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Additional Protected Declarations
|
|
|
|
//## begin DebugGraphics.protected preserve=yes
|
|
|
|
//## end DebugGraphics.protected
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Additional Private Declarations
|
|
|
|
//## begin DebugGraphics.private preserve=yes
|
|
|
|
//## end DebugGraphics.private
|
|
|
|
|
|
|
|
private: //## implementation
|
|
|
|
// Additional Implementation Declarations
|
|
|
|
//## begin DebugGraphics.implementation preserve=yes
|
|
|
|
//## end DebugGraphics.implementation
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
//## begin DebugGraphics.postscript preserve=yes
|
|
|
|
//## end DebugGraphics.postscript
|
|
|
|
|
|
|
|
// Class DebugGraphics
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//## begin module.epilog preserve=yes
|
|
|
|
//## end module.epilog
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|