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://thisisthedefaultconstructorMyClass(){}//classeswithentitysemantic(eg:classeswhoseaimstobeinherited)shouldbe//norecopyablenoreassignable,wecandeclarecopyctorandassignmentoperatorasdeletedMyClass(MyClassconst&)=deleted;MyClass&operator=(MyClassconst&)=delete,virtualMyClass();//otherstuffs};code]Itwouldbefineifwecouldhavesomethinglikethe"virutal pure"informationinthiscaseNOTA:C++11allowstodeclarefunctionsas"default",followingthesameprinciple(butwiththe"default"keyword)...maybecouldyoumakeboth?PS:i'm sorry for my poor english, my mother language is french
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