summaryrefslogtreecommitdiffstats
path: root/src/uscxml/interpreter/InterpreterRC.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/interpreter/InterpreterRC.h')
-rw-r--r--src/uscxml/interpreter/InterpreterRC.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/uscxml/interpreter/InterpreterRC.h b/src/uscxml/interpreter/InterpreterRC.h
index 3dae973..d65e85a 100644
--- a/src/uscxml/interpreter/InterpreterRC.h
+++ b/src/uscxml/interpreter/InterpreterRC.h
@@ -37,11 +37,11 @@ class InterpreterRC : public InterpreterImpl {
void computeEntrySet(const Arabica::XPath::NodeSet<std::string>& transitions,
Arabica::XPath::NodeSet<std::string>& statesToEnter,
Arabica::XPath::NodeSet<std::string>& statesForDefaultEntry,
- std::map<std::string, Arabica::DOM::Node<std::string> > defaultHistoryContent);
+ std::map<std::string, Arabica::DOM::Node<std::string> >& defaultHistoryContent);
void computeEntrySet(const Arabica::DOM::Node<std::string>& transition,
Arabica::XPath::NodeSet<std::string>& statesToEnter,
Arabica::XPath::NodeSet<std::string>& statesForDefaultEntry,
- std::map<std::string, Arabica::DOM::Node<std::string> > defaultHistoryContent);
+ std::map<std::string, Arabica::DOM::Node<std::string> >& defaultHistoryContent);
Arabica::DOM::Node<std::string> getTransitionDomain(const Arabica::DOM::Element<std::string>& transition);
Arabica::XPath::NodeSet<std::string> getEffectiveTargetStates(const Arabica::DOM::Element<std::string>& transition);
@@ -49,13 +49,13 @@ class InterpreterRC : public InterpreterImpl {
void addDescendantStatesToEnter(const Arabica::DOM::Element<std::string>& state,
Arabica::XPath::NodeSet<std::string>& statesToEnter,
Arabica::XPath::NodeSet<std::string>& statesForDefaultEntry,
- std::map<std::string, Arabica::DOM::Node<std::string> > defaultHistoryContent);
+ std::map<std::string, Arabica::DOM::Node<std::string> >& defaultHistoryContent);
void addAncestorStatesToEnter(const Arabica::DOM::Element<std::string>& state,
const Arabica::DOM::Element<std::string>& ancestor,
Arabica::XPath::NodeSet<std::string>& statesToEnter,
Arabica::XPath::NodeSet<std::string>& statesForDefaultEntry,
- std::map<std::string, Arabica::DOM::Node<std::string> > defaultHistoryContent);
+ std::map<std::string, Arabica::DOM::Node<std::string> >& defaultHistoryContent);
};