mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 06:06:00 -06:00
25 lines
352 B
C++
25 lines
352 B
C++
#ifndef _DXF_Objects_h_
|
|
#define _DXF_Objects_h_
|
|
|
|
#include "DXF.h"
|
|
|
|
class DXFObjects
|
|
{
|
|
friend class DXF;
|
|
private:
|
|
|
|
// back link to container DXF
|
|
Ptr<DXF> dxf;
|
|
|
|
// private constructor -- may be created only by DXF class
|
|
DXFObjects(DXF *d);
|
|
|
|
// write tables section to stream
|
|
bool Write(Stream &s);
|
|
|
|
protected:
|
|
|
|
public:
|
|
|
|
};
|
|
#endif
|