btool
A parser/converter/transpiler for .bib files
▼
btool
►
Classes
▼
Files
▼
File List
▼
src
AbstractGenerator.cpp
►
AbstractGenerator.hpp
AbstractParserState.cpp
►
AbstractParserState.hpp
►
BibElement.cpp
►
BibElement.hpp
►
Field.cpp
►
Field.hpp
►
Generator.hpp
GeneratorException.cpp
►
GeneratorException.hpp
GlobalParserState.cpp
►
GlobalParserState.hpp
HtmlGenerator.cpp
►
HtmlGenerator.hpp
IdentifierParserState.cpp
►
IdentifierParserState.hpp
KeyParserState.cpp
►
KeyParserState.hpp
Parser.cpp
►
Parser.hpp
ParserContext.cpp
►
ParserContext.hpp
ParserException.cpp
►
ParserException.hpp
►
ParserState.hpp
PlainTextGenerator.cpp
►
PlainTextGenerator.hpp
StyleParserState.cpp
►
StyleParserState.hpp
StyleProperties.cpp
►
StyleProperties.hpp
TranslationTable.cpp
►
TranslationTable.hpp
ValueParserState.cpp
►
ValueParserState.hpp
XmlGenerator.cpp
►
XmlGenerator.hpp
►
test
►
main.cpp
►
File Members
►
Examples
•
All
Classes
Files
Functions
Variables
Enumerations
Enumerator
PlainTextGenerator.hpp
Go to the documentation of this file.
1
#ifndef BTOOL_SRC_PLAINTEXTGENERATOR_HPP_
2
#define BTOOL_SRC_PLAINTEXTGENERATOR_HPP_
3
4
#include <
AbstractGenerator.hpp
>
5
6
struct
PlainTextGenerator
:
AbstractGenerator
{
7
8
[[noreturn]]
auto
fail
(
const
std::string &message,
const
std::string &type) ->
void
override
;
9
10
auto
write
() -> std::string
override
;
11
12
explicit
PlainTextGenerator
(
const
std::vector<BibElement> &
elements
);
13
};
14
15
#endif
AbstractGenerator
Definition:
AbstractGenerator.hpp:14
AbstractGenerator.hpp
PlainTextGenerator
Definition:
PlainTextGenerator.hpp:6
PlainTextGenerator::fail
auto fail(const std::string &message, const std::string &type) -> void override
Definition:
PlainTextGenerator.cpp:27
PlainTextGenerator::PlainTextGenerator
PlainTextGenerator(const std::vector< BibElement > &elements)
Definition:
PlainTextGenerator.cpp:31
PlainTextGenerator::write
auto write() -> std::string override
Definition:
PlainTextGenerator.cpp:9
AbstractGenerator::elements
std::vector< BibElement > elements
Elements to write.
Definition:
AbstractGenerator.hpp:16
src
PlainTextGenerator.hpp
Generated by
1.8.19