├── CMakeLists.txt ├── CMakeModules └── InstallDirectoryPermissions.cmake ├── LICENSE.md ├── README.md ├── application.cpp ├── examples ├── CMakeLists.txt └── main.cpp ├── include └── appbase │ ├── application.hpp │ ├── channel.hpp │ ├── execution_priority_queue.hpp │ ├── method.hpp │ ├── plugin.hpp │ └── version.hpp ├── version.cmake.in └── version.cpp.in /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/appbase/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeModules/InstallDirectoryPermissions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/appbase/HEAD/CMakeModules/InstallDirectoryPermissions.cmake -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/appbase/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/appbase/HEAD/README.md -------------------------------------------------------------------------------- /application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/appbase/HEAD/application.cpp -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/appbase/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/appbase/HEAD/examples/main.cpp -------------------------------------------------------------------------------- /include/appbase/application.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/appbase/HEAD/include/appbase/application.hpp -------------------------------------------------------------------------------- /include/appbase/channel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/appbase/HEAD/include/appbase/channel.hpp -------------------------------------------------------------------------------- /include/appbase/execution_priority_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/appbase/HEAD/include/appbase/execution_priority_queue.hpp -------------------------------------------------------------------------------- /include/appbase/method.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/appbase/HEAD/include/appbase/method.hpp -------------------------------------------------------------------------------- /include/appbase/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/appbase/HEAD/include/appbase/plugin.hpp -------------------------------------------------------------------------------- /include/appbase/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/appbase/HEAD/include/appbase/version.hpp -------------------------------------------------------------------------------- /version.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/appbase/HEAD/version.cmake.in -------------------------------------------------------------------------------- /version.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/appbase/HEAD/version.cpp.in --------------------------------------------------------------------------------