add exequte_queue
This commit is contained in:
parent
d45bbd84cf
commit
5ecfdd0d7e
@ -34,6 +34,15 @@ namespace try_engine::app_event
|
|||||||
// });
|
// });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// когда нужно выполнение именно по очередности
|
||||||
|
void execute_queue(std::any type, std::any value)
|
||||||
|
{
|
||||||
|
for (const auto layer : l_stack)
|
||||||
|
{
|
||||||
|
layer->on_event(type, value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void print_size();
|
void print_size();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
Reference in New Issue
Block a user