| 156 | } // namespace cppmicroservices |
| 157 | |
| 158 | cppmicroservices::LDAPPropExpr |
| 159 | operator&&(cppmicroservices::LDAPPropExpr const& left, cppmicroservices::LDAPPropExpr const& right) |
| 160 | { |
| 161 | if (left.IsNull()) |
| 162 | return right; |
| 163 | if (right.IsNull()) |
| 164 | return left; |
| 165 | return cppmicroservices::LDAPPropExpr("(&" + static_cast<std::string>(left) + static_cast<std::string>(right) |
| 166 | + ")"); |
| 167 | } |
| 168 | |
| 169 | cppmicroservices::LDAPPropExpr |
| 170 | operator||(cppmicroservices::LDAPPropExpr const& left, cppmicroservices::LDAPPropExpr const& right) |