Skip to content
Snippets Groups Projects
Commit c7d79308 authored by Siqi Ling's avatar Siqi Ling
Browse files

do not forget the lovely io/Writer.h

parent d5add584
No related branches found
No related tags found
No related merge requests found
...@@ -77,6 +77,8 @@ namespace AMDiS ...@@ -77,6 +77,8 @@ namespace AMDiS
{ {
if (Arh2Reader::isReadable(filename)) if (Arh2Reader::isReadable(filename))
Arh2Reader::readFile(filename, container); Arh2Reader::readFile(filename, container);
else if (Arh3Reader::isReadable(filename))
Arh3Reader::readFile(filename, container);
else else
ArhReader::readFile(filename, container); ArhReader::readFile(filename, container);
} }
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
#include "DOFVector.h" #include "DOFVector.h"
#include "SystemVector.h" #include "SystemVector.h"
#include "Arh2Writer.h" #include "Arh3Writer.h"
#include "DataCollector.h" #include "DataCollector.h"
#include "DofWriter.h" #include "DofWriter.h"
#include "GNUPlotWriter.h" #include "GNUPlotWriter.h"
...@@ -74,7 +74,7 @@ namespace AMDiS ...@@ -74,7 +74,7 @@ namespace AMDiS
} }
else if (ext == ".arh") else if (ext == ".arh")
{ {
Arh2Writer::writeFile(container, filename); Arh3Writer::writeFile(container, filename);
} }
else if (ext == ".dat") else if (ext == ".dat")
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment