ultimatepp/bazaar/DXF/Blocks.h
micio f26735b2fb Bazaar : added DXF package for cad DXF files writing
git-svn-id: svn://ultimatepp.org/upp/trunk@5269 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2012-08-11 15:22:03 +00:00

30 lines
446 B
C++

#ifndef _DXF_Blocks_h_
#define _DXF_Blocks_h_
#include "DXF.h"
class DXFBlocks
{
friend class DXF;
friend class DXFTables;
private:
// back link to container DXF
Ptr<DXF> dxf;
// private constructor -- may be created only by DXF class
DXFBlocks(DXF *d);
// write tables section to stream
bool Write(Stream &s);
// the blocks, mapped by name
ArrayMap<String, DXFBlock> blocks;
protected:
public:
};
#endif