├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── include └── farbot │ ├── AsyncCaller.hpp │ ├── RealtimeObject.hpp │ ├── RealtimeTraits.hpp │ ├── detail │ ├── RealtimeObject.tcc │ └── fifo.tcc │ └── fifo.hpp └── test └── test.cpp /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hogliux/farbot/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hogliux/farbot/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hogliux/farbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hogliux/farbot/HEAD/README.md -------------------------------------------------------------------------------- /include/farbot/AsyncCaller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hogliux/farbot/HEAD/include/farbot/AsyncCaller.hpp -------------------------------------------------------------------------------- /include/farbot/RealtimeObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hogliux/farbot/HEAD/include/farbot/RealtimeObject.hpp -------------------------------------------------------------------------------- /include/farbot/RealtimeTraits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hogliux/farbot/HEAD/include/farbot/RealtimeTraits.hpp -------------------------------------------------------------------------------- /include/farbot/detail/RealtimeObject.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hogliux/farbot/HEAD/include/farbot/detail/RealtimeObject.tcc -------------------------------------------------------------------------------- /include/farbot/detail/fifo.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hogliux/farbot/HEAD/include/farbot/detail/fifo.tcc -------------------------------------------------------------------------------- /include/farbot/fifo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hogliux/farbot/HEAD/include/farbot/fifo.hpp -------------------------------------------------------------------------------- /test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hogliux/farbot/HEAD/test/test.cpp --------------------------------------------------------------------------------