vtkbone
Classes | Macros
CommandStyleFileReader.h File Reference
#include <iostream>
#include <string>
#include <sstream>
#include <map>
#include <stack>
Include dependency graph for CommandStyleFileReader.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

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...
 

Macros

#define FSDF_OK   0
 
#define FSDF_ERROR   1
 
#define frSetErrorMsgMacro(x)
 
#define frSetDebugMsgMacro(x)
 
#define frSetWarningMsgMacro(x)
 

Macro Definition Documentation

◆ FSDF_OK

#define FSDF_OK   0

Definition at line 21 of file CommandStyleFileReader.h.

◆ FSDF_ERROR

#define FSDF_ERROR   1

Definition at line 22 of file CommandStyleFileReader.h.

◆ 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.