class Derived_Class : public CommonBase, protected Intermediate

A derived class

Inheritance:


Public

methods
Derived_Class( double a, int b )
Constructor
~Derived_Class()
destructor
parameters
double a
the first parameter
int b
a second parameter

Inherited from CommonBase:

Public Methods

const Derived_Class& getB( const Intermediate& c )

Protected Fields

double variable

Private Methods

int privateMember()

Inherited from Intermediate:


Inherited from CommonBase:

Public Methods

const Derived_Class& getB( const Intermediate& c )

Protected Fields

double variable

Private Methods

int privateMember()

Documentation

A derived class. Here we show multiple inheritance from two docified classes. This example shows how to structure the members of a class, if desired.

This is how this documentation has been generated:

    /** A derived class.
        Here we show multiple inheritance from two docified classes.
        This example shows how to structure the members of a class, if desired.

        This is how this documentation has been generated: * /

    class 	Derived_Class : public CommonBase, protected Intermediate
    {
    public:
        /**@name	parameters	* /
        //@{
            /// the first parameter
        double	a ;
            /// a second parameter
        int		b ;
        //@}

        /**@name	methods	* /
        //@{
            /// constructor
            /** This constructor takes two arguments, just for the sake of
                demonstrating how documented members are displayed by DOC++.
                @param 	a this is good for many things
                @param 	b this is good for nothing  * /
        DerivedClass( double a, int b ) ;
            /// destructor
        ~DerivedClass() ;
        //@}
    } ;
    
parameters

double a
the first parameter

int b
a second parameter

methods

Derived_Class( double a, int b )
Constructor. This constructor takes two arguments, just for the sake of demonstrating how documented members are displayed by DOC++.
Parameters:
a - this is good for many things
b - this is good for nothing

~Derived_Class()
destructor


This class has no child classes.

alphabetic index hierarchy of classes


this page has been generated automatically by doc++

(c)opyright by Malte Zöckler, Roland Wunderling
contact: doc++@zib.de