#include <StreamUtilities.h>
|
static void | skip_comment_lines (std::istream &in, const char comment_start) |
| Skips comment lines until a line without a comment character is encountered. More...
|
|
Definition at line 32 of file StreamUtilities.h.
QUESO::StreamUtilities::StreamUtilities |
( |
| ) |
|
|
inline |
QUESO::StreamUtilities::~StreamUtilities |
( |
| ) |
|
|
inline |
void QUESO::StreamUtilities::skip_comment_lines |
( |
std::istream & |
in, |
|
|
const char |
comment_start |
|
) |
| |
|
static |
Skips comment lines until a line without a comment character is encountered.
Definition at line 35 of file StreamUtilities.C.
Referenced by QUESO::InterpolationSurrogateIOASCII< V, M >::read().
44 while(std::isspace(c))in.get(c);
47 queso_require( !in.fail() );
49 while (in.get(c), c==comment_start)
50 in.getline (line, 255);
55 queso_require( !in.fail() );
The documentation for this class was generated from the following files: