aadnekar / TDT4240_22

Repository for a group project in Software Architecture course.
MIT License
0 stars 1 forks source link

Create a super class for buttons and extend into existing button classes #94

Closed aadnekar closed 4 years ago

aadnekar commented 4 years ago

Added a super class for all button classes, and implemented a template method called initializeButtons(). Any sub class will thus be free to override any method being called in the template method, but should not override the template method itself.