Skip to content
Snippets Groups Projects
Commit a57a7908 authored by Axel Naumann's avatar Axel Naumann
Browse files

Add new interface to MultiplexInterpreterCallbacks.

parent 9c8b2ab0
No related branches found
No related tags found
No related merge requests found
......@@ -123,6 +123,16 @@ namespace cling {
for (auto&& cb : m_Callbacks)
cb->PrintStackTrace();
}
void EnteringUserCode() override {
for (auto&& cb : m_Callbacks)
cb->EnteringUserCode();
}
void ReturnedFromUserCode() override {
for (auto&& cb : m_Callbacks)
cb->ReturnedFromUserCode();
}
};
} // end namespace cling
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment