76 lines
1.7 KiB
C++
76 lines
1.7 KiB
C++
//## begin module.cm preserve=no
|
|
|
|
// %X% %Q% %Z% %W%
|
|
|
|
//## end module.cm
|
|
|
|
|
|
|
|
//## begin module.cp preserve=no
|
|
|
|
//## end module.cp
|
|
|
|
|
|
|
|
//## Module: fstream; Pseudo Package specification
|
|
|
|
//## Subsystem: Figures
|
|
|
|
//## Source file: H:\WebDocs\skola\Avancerad_C++\Lab6\fstream.h
|
|
|
|
|
|
|
|
#ifndef fstream_h
|
|
|
|
#define fstream_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: fstream
|
|
|
|
//## Category: Persist
|
|
|
|
//## Subsystem: Figures
|
|
|
|
//## Persistence: Transient
|
|
|
|
//## Cardinality/Multiplicity: n
|
|
|
|
|
|
|
|
class fstream
|
|
|
|
{
|
|
|
|
//## begin fstream.initialDeclarations preserve=yes
|
|
|
|
//## end fstream.initialDeclarations
|
|
|
|
|
|
|
|
public:
|
|
|
|
//## Constructors (generated)
|
|
|
|
fstream();
|
|
|
|
|
|
|
|
//## Destructor (generated)
|
|
|
|
~fstream();
|
|
|
|
|
|
|
|
// Additional Public Declarations
|
|
|
|
//## begin fstream.public preserve=yes
|
|
|
|
//## end fstream.public
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Additional Protected Declarations
|
|
|
|
//## begin fstream.protected preserve=yes
|
|
|
|
//## end fstream.protected
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Additional Private Declarations
|
|
|
|
//## begin fstream.private preserve=yes
|
|
|
|
//## end fstream.private
|
|
|
|
|
|
|
|
private: //## implementation
|
|
|
|
// Additional Implementation Declarations
|
|
|
|
//## begin fstream.implementation preserve=yes
|
|
|
|
//## end fstream.implementation
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
//## begin fstream.postscript preserve=yes
|
|
|
|
//## end fstream.postscript
|
|
|
|
|
|
|
|
// Class fstream
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//## begin module.epilog preserve=yes
|
|
|
|
//## end module.epilog
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|