Line data Source code
1 : /**
2 : * Copyright Soramitsu Co., Ltd. All Rights Reserved.
3 : * SPDX-License-Identifier: Apache-2.0
4 : */
5 :
6 : #include "backend/protobuf/queries/proto_get_pending_transactions.hpp"
7 :
8 : namespace shared_model {
9 : namespace proto {
10 :
11 : template <typename QueryType>
12 : GetPendingTransactions::GetPendingTransactions(QueryType &&query)
13 16 : : CopyableProto(std::forward<QueryType>(query)) {}
14 :
15 : template GetPendingTransactions::GetPendingTransactions(
16 : GetPendingTransactions::TransportType &);
17 : template GetPendingTransactions::GetPendingTransactions(
18 : const GetPendingTransactions::TransportType &);
19 : template GetPendingTransactions::GetPendingTransactions(
20 : GetPendingTransactions::TransportType &&);
21 :
22 : GetPendingTransactions::GetPendingTransactions(
23 : const GetPendingTransactions &o)
24 0 : : GetPendingTransactions(o.proto_) {}
25 :
26 : GetPendingTransactions::GetPendingTransactions(
27 : GetPendingTransactions &&o) noexcept
28 16 : : GetPendingTransactions(std::move(o.proto_)) {}
29 :
30 : } // namespace proto
31 : } // namespace shared_model
|