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
classMyClass{public://this is the default constructorMyClass(){}// 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 deletedMyClass(MyClassconst&)=deleted;MyClass&operator=(MyClassconst&)=delete,virtualMyClass();// other stuffs};code]Itwouldbefineifwecouldhavesomethinglikethe"virutal pure"informationinthiscaseNOTA : C++11allowstodeclarefunctionsas"default",followingthesameprinciple(butwiththe"default"keyword)...maybecouldyoumakeboth?PS : i'msorryformypoorenglish,mymotherlanguageisfrench
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
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