-
struct
Derived1
: virtual public Base
-
An example derived class
Members:
- Public:
- Derived1( int arg1 )
;
-
Class constructor.
Note that PERCEPS is not confused by inline functions.
- int public1(char * string) throws ExceptionClass("Bad String")
;
-
A member which throws an exception
- Base & public2() const
;
-
A const public member.
Note how the autolink feature has linked the function type
in this case.
Programmer: Jane Doe