| 167 | } |
| 168 | |
| 169 | cppmicroservices::LDAPPropExpr |
| 170 | operator||(cppmicroservices::LDAPPropExpr const& left, cppmicroservices::LDAPPropExpr const& right) |
| 171 | { |
| 172 | if (left.IsNull()) |
| 173 | return right; |
| 174 | if (right.IsNull()) |
| 175 | return left; |
| 176 | return cppmicroservices::LDAPPropExpr("(|" + static_cast<std::string>(left) + static_cast<std::string>(right) |
| 177 | + ")"); |
| 178 | } |