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
Field.hpp
Go to the documentation of this file.
1
#ifndef BIBPARSER_FIELD_HPP
2
#define BIBPARSER_FIELD_HPP
3
4
#include <string>
5
#include <iostream>
6
11
struct
Field
{
12
std::string
name
;
13
std::string
value
;
14
15
auto
operator==
(
const
Field
&other)
const
noexcept -> bool;
16
};
17
18
auto
operator<<
(std::ostream &os,
Field
const
&field) -> std::ostream &;
19
20
#endif
Field::name
std::string name
the name of the Field
Definition:
Field.hpp:12
Field
Field-Container.
Definition:
Field.hpp:11
Field::value
std::string value
the value of the Field
Definition:
Field.hpp:13
operator<<
auto operator<<(std::ostream &os, Field const &field) -> std::ostream &
Definition:
Field.cpp:19
Field::operator==
auto operator==(const Field &other) const noexcept -> bool
Definition:
Field.cpp:9
src
Field.hpp
Generated by
1.8.19