86 lines
1.9 KiB
C++
86 lines
1.9 KiB
C++
//## begin module.cm preserve=no
|
|
|
|
// %X% %Q% %Z% %W%
|
|
|
|
//## end module.cm
|
|
|
|
|
|
|
|
//## begin module.cp preserve=no
|
|
|
|
//## end module.cp
|
|
|
|
|
|
|
|
//## Module: Pline; Pseudo Package specification
|
|
|
|
//## Subsystem: Figures
|
|
|
|
//## Source file: Pline.h
|
|
|
|
|
|
|
|
#ifndef Pline_h
|
|
|
|
#define Pline_h 1
|
|
|
|
|
|
|
|
//## begin module.additionalIncludes preserve=no
|
|
|
|
//## end module.additionalIncludes
|
|
|
|
|
|
|
|
//## begin module.includes preserve=yes
|
|
|
|
//## end module.includes
|
|
|
|
|
|
|
|
// Line
|
|
|
|
#include "Line.h"
|
|
|
|
// PersFig
|
|
|
|
#include "PersFig.h"
|
|
|
|
//## begin module.additionalDeclarations preserve=yes
|
|
|
|
//## end module.additionalDeclarations
|
|
|
|
|
|
|
|
|
|
|
|
//## Class: Pline
|
|
|
|
//## Category: Persist
|
|
|
|
//## Subsystem: Figures
|
|
|
|
//## Persistence: Transient
|
|
|
|
//## Cardinality/Multiplicity: n
|
|
|
|
|
|
|
|
class Pline : public PersFig, //## Inherits: <unnamed>
|
|
|
|
public Line //## Inherits: <unnamed>
|
|
|
|
{
|
|
|
|
//## begin Pline.initialDeclarations preserve=yes
|
|
|
|
//## end Pline.initialDeclarations
|
|
|
|
|
|
|
|
public:
|
|
|
|
//## Constructors (generated)
|
|
|
|
Pline();
|
|
|
|
|
|
|
|
//## Destructor (generated)
|
|
|
|
~Pline();
|
|
|
|
|
|
|
|
|
|
|
|
//## Other Operations (specified)
|
|
|
|
//## Operation: archive%940866980
|
|
|
|
void archive (PStream &ps);
|
|
|
|
|
|
|
|
// Additional Public Declarations
|
|
|
|
//## begin Pline.public preserve=yes
|
|
|
|
//## end Pline.public
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Additional Protected Declarations
|
|
|
|
//## begin Pline.protected preserve=yes
|
|
|
|
//## end Pline.protected
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Additional Private Declarations
|
|
|
|
//## begin Pline.private preserve=yes
|
|
|
|
//## end Pline.private
|
|
|
|
|
|
|
|
private: //## implementation
|
|
|
|
// Additional Implementation Declarations
|
|
|
|
//## begin Pline.implementation preserve=yes
|
|
|
|
//## end Pline.implementation
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
//## begin Pline.postscript preserve=yes
|
|
|
|
//## end Pline.postscript
|
|
|
|
|
|
|
|
// Class Pline
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//## begin module.epilog preserve=yes
|
|
|
|
//## end module.epilog
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|