mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 14:16:10 -06:00
26 lines
365 B
C++
26 lines
365 B
C++
#ifndef _DXF_Header_h_
|
|
#define _DXF_Header_h_
|
|
|
|
#include <Core/Core.h>
|
|
using namespace Upp;
|
|
|
|
class DXFHeader
|
|
{
|
|
friend class DXF;
|
|
|
|
private:
|
|
// back link to container DXF
|
|
Ptr<DXF> dxf;
|
|
|
|
// write header to stream
|
|
bool Write(Stream &s);
|
|
|
|
// private constructor -- may be created only by DXF class
|
|
DXFHeader(DXF *d);
|
|
|
|
protected:
|
|
|
|
public:
|
|
};
|
|
|
|
#endif
|