OSDN Git Service

add constraint.
[meshio/meshio.git] / src / binary.cpp
index 08bc752..229a98e 100644 (file)
@@ -124,12 +124,17 @@ FileWriter::FileWriter(const char *path)
        io_=fopen(path, "wb");
 }
 
+FileWriter::FileWriter(const wchar_t *path)
+{
+    io_=_wfopen(path, L"wb");
+}
+
 FileWriter::~FileWriter()
 {
        fclose(io_);
 }
 
-void FileWriter::write(char *buf, unsigned int size)
+void FileWriter::write(const char *buf, unsigned int size)
 {
        fwrite(buf, size, 1, io_);
 }