Initial commit

This commit is contained in:
Roland Winklmeier
2013-02-15 18:50:17 +01:00
parent 57214c1c1e
commit 584251e0a8
125 changed files with 10640 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#include <QCoreApplication>
#include <blackmisc/debug.h>
#include <blackcore/constants.h>
#include <limits>
#include <iostream>
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
BlackMisc::CApplicationContext myApplicationContext;
bInfo << "This is a Info log message";
bWarning << "This is a bWarning log message";
bError << "This is a bError log message";
bDebug << "This is a bDebug log message";
return a.exec();
}