Moved PQs from blackcore to blackmisc, added header for namespace, mainpage.dox for Doxygen

This commit is contained in:
Klaus Basan
2013-03-22 16:07:53 +01:00
parent 969f0c879f
commit 525910c7a3
34 changed files with 237 additions and 112 deletions

21
tests/blackmisc/main.cpp Normal file
View File

@@ -0,0 +1,21 @@
#include <QCoreApplication>
#include <QDebug>
#include "testmain.h"
using namespace BlackMiscTest;
/*!
* Starter for testcases
* \brief main
* \param argc
* \param argv
* \return
*/
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
TestMain::unitMain(argc, argv);
// bye
return a.exec();
}