ledger-core
EthereumLikeOperation.hpp
1 // AUTOGENERATED FILE - DO NOT MODIFY!
2 // This file generated by Djinni from ethereum_like_wallet.djinni
3 
4 #ifndef DJINNI_GENERATED_ETHEREUMLIKEOPERATION_HPP
5 #define DJINNI_GENERATED_ETHEREUMLIKEOPERATION_HPP
6 
7 #include <memory>
8 #include <vector>
9 #ifndef LIBCORE_EXPORT
10  #if defined(_MSC_VER)
11  #include <libcore_export.h>
12  #else
13  #define LIBCORE_EXPORT
14  #endif
15 #endif
16 
17 namespace ledger { namespace core { namespace api {
18 
19 class EthereumLikeTransaction;
20 class InternalTransaction;
21 
23 class LIBCORE_EXPORT EthereumLikeOperation {
24 public:
25  virtual ~EthereumLikeOperation() {}
26 
31  virtual std::shared_ptr<EthereumLikeTransaction> getTransaction() = 0;
32 
34  virtual std::vector<std::shared_ptr<InternalTransaction>> getInternalTransactions() = 0;
35 };
36 
37 } } } // namespace ledger::core::api
38 #endif //DJINNI_GENERATED_ETHEREUMLIKEOPERATION_HPP
Definition: EthereumLikeOperation.hpp:23
Definition: Account.cpp:8