├── .gitignore ├── .gitmodules ├── AUTHORS ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake └── modules │ └── FindGoogleTest.cmake ├── deps.sh ├── src ├── bus.hpp ├── event.hpp └── signal.hpp └── test ├── CMakeLists.txt └── test.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | # QtCreator 2 | *.user 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypjack/eventpp/HEAD/.gitmodules -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypjack/eventpp/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypjack/eventpp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypjack/eventpp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypjack/eventpp/HEAD/README.md -------------------------------------------------------------------------------- /cmake/modules/FindGoogleTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypjack/eventpp/HEAD/cmake/modules/FindGoogleTest.cmake -------------------------------------------------------------------------------- /deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypjack/eventpp/HEAD/deps.sh -------------------------------------------------------------------------------- /src/bus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypjack/eventpp/HEAD/src/bus.hpp -------------------------------------------------------------------------------- /src/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypjack/eventpp/HEAD/src/event.hpp -------------------------------------------------------------------------------- /src/signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypjack/eventpp/HEAD/src/signal.hpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypjack/eventpp/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypjack/eventpp/HEAD/test/test.cpp --------------------------------------------------------------------------------