Skip to content

Instantly share code, notes, and snippets.

@kepocnhh
Created October 18, 2017 10:41
Show Gist options
  • Save kepocnhh/60d3985d5ba31c89e84823487e45413c to your computer and use it in GitHub Desktop.
Save kepocnhh/60d3985d5ba31c89e84823487e45413c to your computer and use it in GitHub Desktop.
class Logic
{
void update()
{
view.show(data.get());
}
void update(Pretty p)
{
data.set(p);
update();
}
}
interface View
{
void show(Pretty p);
}
interface Data
{
Pretty get();
void set(Pretty p);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment