ultimatepp/bazaar/DXF/Header.h
micio 82ab8d92a2 Bazaar/DXF : store current layer, linetype and color with drawing
git-svn-id: svn://ultimatepp.org/upp/trunk@5280 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2012-08-13 18:29:38 +00:00

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