Class used to check the capability of callbacks to call public, protected, and private functions. More...
Public Member Functions | |
void | PublicParent (void) |
A public function. More... | |
Protected Member Functions | |
void | ProtectedParent (void) |
A protected function. More... | |
Static Protected Member Functions | |
static void | StaticProtectedParent (void) |
A static protected function. More... | |
Private Member Functions | |
void | PrivateParent (void) |
A private function. More... | |
Class used to check the capability of callbacks to call public, protected, and private functions.
Definition at line 794 of file callback-test-suite.cc.
|
inlineprivate |
A private function.
Definition at line 811 of file callback-test-suite.cc.
|
inlineprotected |
A protected function.
Definition at line 803 of file callback-test-suite.cc.
Referenced by CallbackTestClass::CheckParentalRights().
|
inline |
A public function.
Definition at line 798 of file callback-test-suite.cc.
Referenced by CallbackTestClass::CheckParentalRights().
|
inlinestaticprotected |
A static protected function.
Definition at line 806 of file callback-test-suite.cc.
Referenced by CallbackTestClass::CheckParentalRights().