STORMM Source Documentation
Loading...
Searching...
No Matches
display.h
1// -*-c++-*-
2#ifndef STORMM_DISPLAY_H
3#define STORMM_DISPLAY_H
4
5#include <fstream>
6#include <iostream>
7#include <string>
8#include "copyright.h"
9
10namespace stormm {
11namespace display {
12
19std::string horizontalRule(const std::string &left_corner = std::string("+"),
20 const std::string &right_corner = std::string("+"), int width = 79,
21 const char middle = '-');
22
30void terminalHorizontalRule(const std::string &left_corner = std::string("+"),
31 const std::string &right_corner = std::string("+"), int width = 0,
32 const char middle = '-', std::ostream *foutp = &std::cout);
33
34} // namespace display
35} // namespace stormm
36
37#endif