#include <iostream>
#include <string>
#include <sstream>
#include <map>
#include <stack>
Go to the source code of this file.
|
class | CommandStyleFileReader |
| An abstract base class for reading data files that are structured as text with a fixed maximum line length, and consist of a series of commands. More...
|
|
◆ FSDF_OK
◆ FSDF_ERROR
◆ frSetErrorMsgMacro
#define frSetErrorMsgMacro |
( |
|
x | ) |
|
Value: { \
std::ostringstream msg; \
msg << "ERROR: In " << __FILE__ << ", line " << __LINE__ \
<< "\n" << this << ": " << x << "\n"; \
SetError(msg.str()); \
}
Definition at line 251 of file CommandStyleFileReader.h.
◆ frSetDebugMsgMacro
#define frSetDebugMsgMacro |
( |
|
x | ) |
|
Value: { \
if (debug) \
{ \
std::ostringstream msg; \
msg << "Debug: In " << __FILE__ << ", line " << __LINE__ \
<< "\n" << this << ": " << x << "\n"; \
DebugMessage (msg.str()); \
} \
}
Definition at line 263 of file CommandStyleFileReader.h.
◆ frSetWarningMsgMacro
#define frSetWarningMsgMacro |
( |
|
x | ) |
|
Value: { \
std::ostringstream msg; \
msg << "WARNING: In " << __FILE__ << ", line " << __LINE__ \
<< "\n" << this << ": " << x << "\n"; \
WarningMessage (msg.str()); \
}
Definition at line 278 of file CommandStyleFileReader.h.