Skip to content

Instantly share code, notes, and snippets.

@sakex
Created June 23, 2020 18:30
Show Gist options
  • Save sakex/6331d910aa8e6c18c982ffdba4651782 to your computer and use it in GitHub Desktop.
Save sakex/6331d910aa8e6c18c982ffdba4651782 to your computer and use it in GitHub Desktop.
// bindings.hpp
extern "C" void register_button(GUI::Engine *engine, AbstractButtonBinding *button) {
auto *concrete = new ButtonBindingConcrete(button);
engine->registerButton(concrete);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment