philippe dunski - 2013-01-02

Hello,

Would it be possible to add some C++11 new features, like the opportunity to see deleted functions

Maybe don't you know what i'm talking about, thus the new C++11 standard allow to write code like

class MyClass
{
    public:
       //this is the default constructor
        MyClass(){}
        // classes with entity semantic (eg: classes whose aims to be inherited) should be
        // nore copyable nore assignable, we can declare copy ctor and assignment operator as deleted
        MyClass(MyClass const &) = deleted;
        MyClass & operator = (MyClass const &)  = delete,
        virtual MyClass();
        // other stuffs
};
code]It would be fine if we could have something like the "virutal pure" information in this case
NOTA : C++11 allows to declare functions as "default", following the same principle (but with the "default" keyword)... maybe could you make both ?
PS : i'm sorry for my poor english, my mother language is french