Call a function in a parent or different child(component) of the parent from one of its children(component)
In the child class
class ChildClass {
public:
  void whateverFunction(int whatever_args) {
    // Set the data that will be passed into the callback
    DataType data = "whatever"; 
 if (event_handler_) {