| 121 | } |
| 122 | |
| 123 | Bundle |
| 124 | BundleContext::GetBundle() const |
| 125 | { |
| 126 | if (!d) |
| 127 | { |
| 128 | throw cppmicroservices::IllegalStateException("The bundle context is no longer valid"); |
| 129 | } |
| 130 | |
| 131 | d->CheckValid(); |
| 132 | auto b = GetAndCheckBundlePrivate(d); |
| 133 | |
| 134 | return MakeBundle(b); |
| 135 | } |
| 136 | |
| 137 | Bundle |
| 138 | BundleContext::GetBundle(long id) const |
nothing calls this directly
no test coverage detected