liblog News
Brought to you by:
nando76
Compile:
Just run make to build static liblog library.
Usage:
Take a look at this sample source to see how simple
you can use this library:
----------------- snip -----------------
#include <memory>
#include "liblog/Log.hpp"
#include "liblog/ConsoleLog.hpp"
int main(int argc, char **argv)
{
// Create a console log device.
std::auto_ptr<CConsoleLog> ConsoleLogger(new CConsoleLog); ... read more