ultimatepp/bazaar/DXF/Header.cpp
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

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;
}