| 102 | } |
| 103 | |
| 104 | void |
| 105 | AppConfig::setComponentConfig(const char *field, Suscan::Object const &obj) |
| 106 | { |
| 107 | if (!obj.isHollow()) { |
| 108 | Suscan::Object dup; |
| 109 | dup.copyFrom(obj); |
| 110 | this->cachedComponentConfig.setField(field, dup); |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | #define TRYSILENT(x) \ |
| 115 | try { x; } catch (Suscan::Exception const &) {} |
no test coverage detected