├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── examples ├── examples.pro └── main.cpp ├── libgitlevtbus.pro ├── src ├── gitldef.h ├── gitlevent.cpp ├── gitlevent.h ├── gitleventbus.cpp ├── gitleventbus.h ├── gitleventparam.cpp ├── gitleventparam.h ├── gitlmodule.cpp ├── gitlmodule.h ├── gitlmoduledelegate.cpp ├── gitlmoduledelegate.h └── src.pro └── test ├── TestGitlEvtBus ├── TestGitlEvtBus.pro └── testcase.cpp ├── TestMacro ├── TestMacro.pro └── testmacro.cpp └── test.pro /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lheric/libgitlevtbus/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lheric/libgitlevtbus/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lheric/libgitlevtbus/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lheric/libgitlevtbus/HEAD/README.md -------------------------------------------------------------------------------- /examples/examples.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lheric/libgitlevtbus/HEAD/examples/examples.pro -------------------------------------------------------------------------------- /examples/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lheric/libgitlevtbus/HEAD/examples/main.cpp -------------------------------------------------------------------------------- /libgitlevtbus.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lheric/libgitlevtbus/HEAD/libgitlevtbus.pro -------------------------------------------------------------------------------- /src/gitldef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lheric/libgitlevtbus/HEAD/src/gitldef.h -------------------------------------------------------------------------------- /src/gitlevent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lheric/libgitlevtbus/HEAD/src/gitlevent.cpp -------------------------------------------------------------------------------- /src/gitlevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lheric/libgitlevtbus/HEAD/src/gitlevent.h -------------------------------------------------------------------------------- /src/gitleventbus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lheric/libgitlevtbus/HEAD/src/gitleventbus.cpp -------------------------------------------------------------------------------- /src/gitleventbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lheric/libgitlevtbus/HEAD/src/gitleventbus.h -------------------------------------------------------------------------------- /src/gitleventparam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lheric/libgitlevtbus/HEAD/src/gitleventparam.cpp -------------------------------------------------------------------------------- /src/gitleventparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lheric/libgitlevtbus/HEAD/src/gitleventparam.h -------------------------------------------------------------------------------- /src/gitlmodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lheric/libgitlevtbus/HEAD/src/gitlmodule.cpp -------------------------------------------------------------------------------- /src/gitlmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lheric/libgitlevtbus/HEAD/src/gitlmodule.h -------------------------------------------------------------------------------- /src/gitlmoduledelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lheric/libgitlevtbus/HEAD/src/gitlmoduledelegate.cpp -------------------------------------------------------------------------------- /src/gitlmoduledelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lheric/libgitlevtbus/HEAD/src/gitlmoduledelegate.h -------------------------------------------------------------------------------- /src/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lheric/libgitlevtbus/HEAD/src/src.pro -------------------------------------------------------------------------------- /test/TestGitlEvtBus/TestGitlEvtBus.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lheric/libgitlevtbus/HEAD/test/TestGitlEvtBus/TestGitlEvtBus.pro -------------------------------------------------------------------------------- /test/TestGitlEvtBus/testcase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lheric/libgitlevtbus/HEAD/test/TestGitlEvtBus/testcase.cpp -------------------------------------------------------------------------------- /test/TestMacro/TestMacro.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lheric/libgitlevtbus/HEAD/test/TestMacro/TestMacro.pro -------------------------------------------------------------------------------- /test/TestMacro/testmacro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lheric/libgitlevtbus/HEAD/test/TestMacro/testmacro.cpp -------------------------------------------------------------------------------- /test/test.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lheric/libgitlevtbus/HEAD/test/test.pro --------------------------------------------------------------------------------