Scorum
blockchain_objects.hpp
Go to the documentation of this file.
1 #pragma once
2 
4 
5 //
6 // Plugins should #define their SPACE_ID's so plugins with
7 // conflicting SPACE_ID assignments can be compiled into the
8 // same binary (by simply re-assigning some of the conflicting #defined
9 // SPACE_ID's in a build script).
10 //
11 // Assignment of SPACE_ID's cannot be done at run-time because
12 // various template automagic depends on them being known at compile
13 // time.
14 //
15 
16 #ifndef BLOCKCHAIN_HISTORY_SPACE_ID
17 #define BLOCKCHAIN_HISTORY_SPACE_ID 7
18 #endif
19 
20 namespace scorum {
21 namespace blockchain_history {
22 
23 using namespace scorum::chain;
24 
26 {
38 };
39 }
40 }
#define BLOCKCHAIN_HISTORY_SPACE_ID
Definition: asset.cpp:15