class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {};
Question: What is the access level for the member function setx in the class derived above?