BOOST_PREVENT_MACRO_SUBSTITUTION
摘要:【BOOST_PREVENT_MACRO_SUBSTITUTION】 用于防止函数被macro替换的问题。 例如: 参考: 1、https://blog.csdn.net/yanxiangtianji/article/details/8765986
阅读全文
EOSIO/appbase
摘要:【EOSIO/appbase】 AppBase是EOSIO开源一个plugins架构程序框架,被应用于 EOS nodeos中。AppBase manages the plugin life-cycle and ensures that all plugins are configured, ini
阅读全文
unique_ptr
摘要:【unique_ptr】 unique_ptr 不共享它的指针。它无法复制到其他 unique_ptr,无法通过值传递到函数,也无法用于需要副本的任何标准模板库 (STL) 算法。只能移动unique_ptr。这意味着,内存资源所有权将转移到另一 unique_ptr,并且原始 unique_ptr
阅读全文
program_options
摘要:【program_options】 The program_options library allows program developers to obtain program options, that is (name, value) pairs from the user, via conv
阅读全文