Possible Duplicate:
Default class inheritance access
I know I can set the protection level when I declare a subclass from a superclass as in:
class Dog : public Pet {
*blah, blah, blah*
}
But what does the protection level default to in this case?
Class Dog: Pet {
*blah, blah, blah*
}