btool
A parser/converter/transpiler for .bib files
Generator.hpp
Go to the documentation of this file.
1 #ifndef BIBPARSER_SRC_GENERATOR_HPP_
2 #define BIBPARSER_SRC_GENERATOR_HPP_
3 
7 struct Generator {
8 
12  virtual ~Generator() = default;
13 
19  virtual auto write() -> std::string = 0;
20 };
21 
22 #endif
Generator::~Generator
virtual ~Generator()=default
Generator::write
virtual auto write() -> std::string=0
Generator
Definition: Generator.hpp:7