base class

base class

(programming)(Or "superclass") The class from which anotherclass (a "subclass") inherits, the class it is based on.

"base class" is the term used in C++. The objects of thesuperclass are a superset of the objects of the subclass.

See inheritance.