Cryptolens Client API for C++
MachineCodeComputer_static.hpp
1 #pragma once
2 
3 #include <string>
4 
5 #include "basic_Error.hpp"
6 
7 namespace cryptolens_io {
8 
9 namespace v20190401 {
10 
11 namespace errors {
12 
13 namespace MachineCodeComputer_static {}
14 
15 } // namespace errors
16 
20 {
21 public:
22 #ifndef CRYPTOLENS_20190701_ALLOW_IMPLICIT_CONSTRUCTORS
23  explicit
24 #endif
26 
27  void
28  set_machine_code(basic_Error & e, std::string machine_code);
29 
30  std::string
31  get_machine_code(basic_Error & e);
32 
33 private:
34  std::string machine_code_;
35 };
36 
37 } // namespace v20190401
38 
39 namespace latest {
40 
41 // TODO: errors namespace
43 
44 } // namespace latest
45 
46 } // namespace cryptolens_io
Definition: MachineCodeComputer_static.hpp:19
Definition: ActivateError.hpp:5
Definition: basic_Error.hpp:90