Tagged Questions

5
votes
3answers
181 views

What are the 'ref' and 'sealed' keywords in C++?

I've just seen some (presumably) C++ code which sports two "keywords" unknown to me (I'm assuming keywords but, since I have no context, they may be simple #define things). They also don't seem to ...
5
votes
6answers
918 views

How to define sealed class in C++?

How to stop the class to be inherited by other class.
1
vote
1answer
167 views

sealed class implementation query

I was reading the C++ faqs on http://www2.research.att.com/~bs/bs_faq2.html , when i came accross this code to implement a 'sealed' class: class Base{ public: friend class A; private: ...
1
vote
1answer
71 views

What do the Items on the properties tab of MSVC++ mean?

I was playing around with my MSVC++ compiler, and the properties tab for my point class said: IsAbstract - false IsInjected - false IsManaged - false IsSealed - false IsTemplate - false ...