3 namespace helios {
namespace filems{
13 template <
typename ... WriteArgs>
31 virtual void write(WriteArgs ... writeArgs) = 0;
Abstract class declaring the methods that any file writer must implement ( FileWriter::write ) and al...
Definition: FileWriter.h:14
FileWriter()=default
Default constructor for the FileWriter class.
virtual void write(WriteArgs ... writeArgs)=0
The write method. Any concrete file writer must override this method and provide a valid implementati...
virtual void finish()
Definition: FileWriter.h:40