Contents Up << >>

How do you express "private inheritance"?

When you use ": private" instead of ": public". E.g.,

  	class Foo : private Bar {
	  //...
	};