├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.txt ├── concurrent_queue.hpp ├── cpplog.hpp ├── examples └── customlogformat.cpp ├── main.cpp ├── outputdebugstream.hpp └── scribestream.hpp /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.log 3 | *.exe 4 | *_test 5 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-d/cpplog/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-d/cpplog/HEAD/Makefile -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-d/cpplog/HEAD/README.txt -------------------------------------------------------------------------------- /concurrent_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-d/cpplog/HEAD/concurrent_queue.hpp -------------------------------------------------------------------------------- /cpplog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-d/cpplog/HEAD/cpplog.hpp -------------------------------------------------------------------------------- /examples/customlogformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-d/cpplog/HEAD/examples/customlogformat.cpp -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-d/cpplog/HEAD/main.cpp -------------------------------------------------------------------------------- /outputdebugstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-d/cpplog/HEAD/outputdebugstream.hpp -------------------------------------------------------------------------------- /scribestream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-d/cpplog/HEAD/scribestream.hpp --------------------------------------------------------------------------------