OGS
XMLInterface.h
Go to the documentation of this file.
1
15#pragma once
16
17#include <string>
18
19#include "BaseLib/IO/Writer.h"
20
21namespace BaseLib
22{
23namespace IO
24{
29{
30 virtual bool readFile(std::string const& fname) = 0;
31
32 std::string export_name = {};
33};
34
35} // namespace IO
36} // namespace BaseLib
Definition of the Writer class.
Base class which enables writing an object to string, stringstream or file.
Definition Writer.h:32
Base class for writing any information to and from XML files.
virtual bool readFile(std::string const &fname)=0