| 291 | } |
| 292 | |
| 293 | boost::optional<Space> SubSurface_Impl::space() const { |
| 294 | boost::optional<Space> result; |
| 295 | boost::optional<Surface> surface = this->surface(); |
| 296 | if (surface) { |
| 297 | result = surface->space(); |
| 298 | } |
| 299 | return result; |
| 300 | } |
| 301 | |
| 302 | boost::optional<double> SubSurface_Impl::uFactor() const { |
| 303 | OptionalConstructionBase oConstruction = construction(); |
no test coverage detected