├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md └── daemon ├── CMakeLists.txt ├── include ├── command-line-parser.hpp ├── daemon.hpp └── log.hpp ├── resource ├── config │ └── daemon-template.conf └── systemd │ └── daemon-template.service └── source ├── daemon.cpp └── main.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | build/ -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftraple/cpp-daemon-template/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftraple/cpp-daemon-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftraple/cpp-daemon-template/HEAD/README.md -------------------------------------------------------------------------------- /daemon/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftraple/cpp-daemon-template/HEAD/daemon/CMakeLists.txt -------------------------------------------------------------------------------- /daemon/include/command-line-parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftraple/cpp-daemon-template/HEAD/daemon/include/command-line-parser.hpp -------------------------------------------------------------------------------- /daemon/include/daemon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftraple/cpp-daemon-template/HEAD/daemon/include/daemon.hpp -------------------------------------------------------------------------------- /daemon/include/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftraple/cpp-daemon-template/HEAD/daemon/include/log.hpp -------------------------------------------------------------------------------- /daemon/resource/config/daemon-template.conf: -------------------------------------------------------------------------------- 1 | 2 | test = "daemon-template"; 3 | -------------------------------------------------------------------------------- /daemon/resource/systemd/daemon-template.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftraple/cpp-daemon-template/HEAD/daemon/resource/systemd/daemon-template.service -------------------------------------------------------------------------------- /daemon/source/daemon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftraple/cpp-daemon-template/HEAD/daemon/source/daemon.cpp -------------------------------------------------------------------------------- /daemon/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftraple/cpp-daemon-template/HEAD/daemon/source/main.cpp --------------------------------------------------------------------------------