My style of coding includes the following idiom:

    class Derived : public Base
    {
       public :
          typedef super Base ; // note that it could be hidden in protected section, instead
          
          // Etc.
    } ;

This enables me to use "super" as an alias to Base, for example, in constructors:

    Derived(int i, int j)
       : super(i), J(j)
    {
    }

Or even when calling the method from the base class inside its overriden version:

    void Derived::doSomething()
    {
       super::doSomething() ;

       // ... And then, do something else
    }

It can even be chained (I have still to find the use for that, though):

    class DerivedDerived : public Derived
    {
       public :
          typedef super Derived ; // note that it could be hidden in protected section, instead
          
          // Etc.
    } ;
    
    void DerivedDerived::doSomethingElse()
    {
       super::doSomethingElse() ; // will call Derived::doSomethingElse()
       super::super::doSomethingElse() ; // will call Base::doSomethingElse()

       // ... And then, do something else
    }

Anyway, I find the use of "typedef super" very useful, for example, when Base is either verbose and/or templated.

The fact is that super is implemented in Java, as well as in C# (where it is called "base", unless I'm wrong). But C++ lacks this keyword.

So, my questions:

* is this use of typedef super common/rare/never seen in the code you work with?
* is this use of typedef super Ok (i.e. do you see strong or not so strong reasons to not use it)?
* should "super" be a good thing, should it be somewhat standardized in C++, or is this use through a typedef enough already?