ledger-core
TezosCurve.hpp
1 // AUTOGENERATED FILE - DO NOT MODIFY!
2 // This file generated by Djinni from addresses.djinni
3 
4 #ifndef DJINNI_GENERATED_TEZOSCURVE_HPP
5 #define DJINNI_GENERATED_TEZOSCURVE_HPP
6 
7 #include <functional>
8 #include <iostream>
9 #include <string>
10 #ifndef LIBCORE_EXPORT
11  #if defined(_MSC_VER)
12  #include <libcore_export.h>
13  #else
14  #define LIBCORE_EXPORT
15  #endif
16 #endif
17 
18 namespace ledger { namespace core { namespace api {
19 
20 enum class TezosCurve : int {
21  ED25519,
22  SECP256K1,
23  P256,
24 };
25 LIBCORE_EXPORT std::string to_string(const TezosCurve& tezosCurve);
26 LIBCORE_EXPORT std::ostream &operator<<(std::ostream &os, const TezosCurve &o);
27 
28 } } } // namespace ledger::core::api
29 
30 namespace std {
31 
32 template <>
33 struct hash<::ledger::core::api::TezosCurve> {
34  size_t operator()(::ledger::core::api::TezosCurve type) const {
35  return std::hash<int>()(static_cast<int>(type));
36  }
37 };
38 
39 } // namespace std
40 #endif //DJINNI_GENERATED_TEZOSCURVE_HPP
Definition: BitcoinLikeFeePolicy.hpp:29
Definition: Account.cpp:8