summaryrefslogtreecommitdiffstats
path: root/src/uscxml/debug/InterpreterIssue.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/debug/InterpreterIssue.h')
-rw-r--r--src/uscxml/debug/InterpreterIssue.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/uscxml/debug/InterpreterIssue.h b/src/uscxml/debug/InterpreterIssue.h
index 3949829..c49233f 100644
--- a/src/uscxml/debug/InterpreterIssue.h
+++ b/src/uscxml/debug/InterpreterIssue.h
@@ -27,7 +27,7 @@
namespace uscxml {
class InterpreterImpl;
-
+
class USCXML_API InterpreterIssue {
public:
enum IssueSeverity {
@@ -35,14 +35,14 @@ public:
USCXML_ISSUE_WARNING,
USCXML_ISSUE_INFO
};
-
+
InterpreterIssue(const std::string& msg, Arabica::DOM::Node<std::string> node, IssueSeverity severity);
std::string xPath;
std::string message;
Arabica::DOM::Node<std::string> node;
IssueSeverity severity;
-
+
private:
static std::list<InterpreterIssue> forInterpreter(InterpreterImpl* interpreter);
friend class InterpreterImpl;