|
|
|
|
|
Error 1030: The access to the base class is restricted by a private inheritance
You try to access a base class of an inheritance. This class was derived by a private inheritance: this class cannot be accessed from a code external to the class or from a code of one of its derived classes. Two possibilities: - Access the base class from a method of the derived class.
- Use a public inheritance: the class will be accessible from a code external to the class as well as from a code of its derived classes.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|