ledger-core
Runnable.hpp
1 // AUTOGENERATED FILE - DO NOT MODIFY!
2 // This file generated by Djinni from thread_dispatcher.djinni
3 
4 #ifndef DJINNI_GENERATED_RUNNABLE_HPP
5 #define DJINNI_GENERATED_RUNNABLE_HPP
6 #ifndef LIBCORE_EXPORT
7  #if defined(_MSC_VER)
8  #include <libcore_export.h>
9  #else
10  #define LIBCORE_EXPORT
11  #endif
12 #endif
13 
14 namespace ledger { namespace core { namespace api {
15 
20 class LIBCORE_EXPORT Runnable {
21 public:
22  virtual ~Runnable() {}
23 
25  virtual void run() = 0;
26 };
27 
28 } } } // namespace ledger::core::api
29 #endif //DJINNI_GENERATED_RUNNABLE_HPP
Definition: Account.cpp:8
Definition: Runnable.hpp:20