| 107 | } |
| 108 | |
| 109 | AnyMap |
| 110 | BundleContext::GetProperties() const |
| 111 | { |
| 112 | if (!d) |
| 113 | { |
| 114 | throw cppmicroservices::IllegalStateException("The bundle context is no longer valid"); |
| 115 | } |
| 116 | |
| 117 | d->CheckValid(); |
| 118 | auto b = GetAndCheckBundlePrivate(d); |
| 119 | |
| 120 | return b->coreCtx->frameworkProperties; |
| 121 | } |
| 122 | |
| 123 | Bundle |
| 124 | BundleContext::GetBundle() const |
nothing calls this directly
no test coverage detected