Closed mjdecker closed 8 years ago
Going to adapt to C++ definition from cppreference:
An abstract class is a class that either defines or inherits at least one function for which the final overrider is pure virtual.
Actually, would have to check if base class reimplements function. Too much work for small benefit.
Could be future work.
Done with pull request #11.
I waffled again. Needed to detect abstract for realization. So, pull request implements abstract and realization.
Abstract class stereotype can be added. Anything, with at least pure virtual (not interface) is
{abstract}