| 22 | } |
| 23 | |
| 24 | bool Context::Activate( Context& context ) { |
| 25 | if( active_context ) { |
| 26 | return false; |
| 27 | } |
| 28 | |
| 29 | active_context = &context; |
| 30 | return true; |
| 31 | } |
| 32 | |
| 33 | bool Context::Deactivate() { |
| 34 | if( !active_context ) { |
nothing calls this directly
no outgoing calls
no test coverage detected