20 #ifndef DECK_OUTPUT_HPP 21 #define DECK_OUTPUT_HPP 32 std::string item_sep =
" ";
33 std::size_t columns = 7;
34 std::string record_indent =
" ";
35 std::string keyword_sep =
"";
38 explicit DeckOutput(std::ostream& s,
int precision = 10);
40 void stash_default( );
45 void start_keyword(
const std::string& kw,
bool split_line);
46 void end_keyword(
bool add_slash);
49 void write_string(
const std::string& s);
50 template <
typename T>
void write(
const T&
value);
54 std::size_t default_count;
55 std::size_t row_count;
60 template <
typename T>
void write_value(
const T&
value);
63 void set_precision(
int precision);
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition: Exceptions.hpp:30
Definition: DeckOutput.hpp:29