Line data Source code
1 : /**
2 : * Copyright Soramitsu Co., Ltd. All Rights Reserved.
3 : * SPDX-License-Identifier: Apache-2.0
4 : */
5 :
6 : #include "interfaces/query_responses/role_permissions.hpp"
7 : #include "utils/string_builder.hpp"
8 :
9 : namespace shared_model {
10 : namespace interface {
11 :
12 : bool RolePermissionsResponse::operator==(const ModelType &rhs) const {
13 0 : return rolePermissions() == rhs.rolePermissions();
14 : }
15 :
16 : } // namespace interface
17 : } // namespace shared_model
|