Inheritance of Classes

Example:

class myclass inherit from index {
	logical mflag
	long _value


	_find(object obj);
.
.
.
}
Multi-Level Inheritance:
class a {
	long z


	display(){

		? z
	}
}
class b inherit from a{
	long y
	long _z


	_display()
}
class c inherit from b{
	long x
	long _y
	long _z


	display(){

		? x,_y

		=_display()
	}
	_display()

}

Note: All classes are defined within another class. This is NOT the same as inheritance. Classes are defined in classes to organize the definition of classes and keep the variable names 11 characters or less.