#Virtual
if it is virtual yes, you either include a empty definition {}
or you make it pure virtual with = 0; in the .h file
but that could get confusing if you are just delaying implementation rather than deferring to subclass
so I’d recommend an empty definition if it is planned to be implemented in that class later