class Derived_Class

A derived class.

Inheritance:


Public Fields

[more] parameters

Public Methods

[more] methods


Inherited from CommonBase:

Public Methods

oconst Derived_Class& getB(constIntermediate& c) const

Protected Fields

odouble variable


Inherited from Intermediate:


Inherited from CommonBase:

Public Methods

oconst Derived_Class& getB(constIntermediate& c) const

Protected Fields

odouble variable


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();
      //@}
    };
    
o parameters

odouble a
the first parameter

oint b
a second parameter

o methods

o 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

o ~Derived_Class()
destructor


This class has no child classes.

Alphabetic index HTML hierarchy of classes or Java



This page was generated with the help of DOC++.