mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 06:06:00 -06:00
9 lines
No EOL
142 B
C++
9 lines
No EOL
142 B
C++
#include "DXF.h"
|
|
|
|
// write header to stream
|
|
bool DXFHeader::Write(Stream &s)
|
|
{
|
|
String hdr = (const char *)dxf_hdr;
|
|
s << hdr;
|
|
return true;
|
|
} |