Add new interface to MultiplexInterpreterCallbacks.
This commit is contained in:
parent
4f41d10b0c
commit
63e3937b23
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user