I had never heard of this keyword before, accidently stumbed across it while researching DLL stuff. Is it standard C++? Seems like all members are public by default?
Code:interface I { virtual void M() = 0; }; class C : public I { public: virtual void M() {}; };



LinkBack URL
About LinkBacks



). The keyword appears blue in VC and bold in DevCPP so if not standard it's at least non-official-semi-standard :P
Want to add some