Skip to content

Instantly share code, notes, and snippets.

@sakex
Created June 23, 2020 18:10
Show Gist options
  • Save sakex/6fb9d35ad50db85ddf82017c51fef585 to your computer and use it in GitHub Desktop.
Save sakex/6fb9d35ad50db85ddf82017c51fef585 to your computer and use it in GitHub Desktop.
// AbstractButton.hpp (in GUI library)
#ifndef MEDIUM_ABSTRACT_BUTTON_H
#define MEDIUM_ABSTRACT_BUTTON_H
#include <string>
class AbstractButton {
virtual void click() = 0;
virtual std::string innerText() = 0;
};
#endif //MEDIUM_ABSTRACT_BUTTON_H
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment