Skip to content
Snippets Groups Projects
Commit aaf33eb4 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

GmshWriteFile

parent c9c0e32b
No related branches found
No related tags found
No related merge requests found
...@@ -104,6 +104,12 @@ int GmshMergeFile(std::string fileName) ...@@ -104,6 +104,12 @@ int GmshMergeFile(std::string fileName)
return MergeFile(fileName, true); return MergeFile(fileName, true);
} }
int GmshWriteFile(std::string fileName)
{
CreateOutputFile(fileName, FORMAT_AUTO);
return 1;
}
int GmshFinalize() int GmshFinalize()
{ {
return 1; return 1;
......
...@@ -21,6 +21,7 @@ int GmshGetOption(std::string category, std::string name, std::string &value, in ...@@ -21,6 +21,7 @@ int GmshGetOption(std::string category, std::string name, std::string &value, in
int GmshGetOption(std::string category, std::string name, double &value, int index=0); int GmshGetOption(std::string category, std::string name, double &value, int index=0);
int GmshGetOption(std::string category, std::string name, unsigned int &value, int index=0); int GmshGetOption(std::string category, std::string name, unsigned int &value, int index=0);
int GmshMergeFile(std::string fileName); int GmshMergeFile(std::string fileName);
int GmshWriteFile(std::string fileName);
int GmshFinalize(); int GmshFinalize();
int GmshBatch(); int GmshBatch();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment