blob: 0c6c932c8018d5e06cfc886ebf702b9546728624 [file] [log] [blame]
Ed Tanous50c50c22017-05-12 16:58:06 -07001/** ==========================================================================
2* 2015 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes
3* with no warranties. This code is yours to share, use and modify with no
4* strings attached and no restrictions or obligations.
5*
6* For more information see g3log/LICENSE or refer refer to http://unlicense.org
7* ============================================================================*/
8
9#pragma once
10
11// For convenience: If you don't want to do a recursive search and replace in your source code
12// for replacing g2log.hpp for g3log/g3log.hpp then you can choose to add this header file to your
13// code. It will get the necessary includes
14//
15//
16// Btw: replacing g2log for g3log include is easy on Linux
17// find . -name "*.cpp*" -print | xargs sed -i -e 's/\g2log\.hpp/\g3log\/g3log\.hpp/g'
18
19#include <g3log/g3log.hpp>
20#include <g3log/logworker.hpp>
21#include <g3log/loglevels.hpp>
22#include <g3log/filesink.hpp>
23