How to prevent your class from being inherited in c++?
Mark it as final.
final
class MyData final { // ... };