Formatting

This commit is contained in:
Klaus Basan
2014-11-19 20:02:00 +01:00
committed by Roland Winklmeier
parent 350b5a0bfa
commit 6e5e28584f
4 changed files with 6 additions and 10 deletions

View File

@@ -10,16 +10,16 @@ namespace BlackMiscTest
{
/*!
* \brief Supporting functions for running the tests
* Supporting functions for running the tests
*/
class Tool
{
private:
//! \brief Constructor
//! Constructor
Tool() {}
public:
//! \brief Get process id
//! Get process id
static qint64 getPid()
{
return QCoreApplication::applicationPid();
@@ -28,7 +28,7 @@ namespace BlackMiscTest
//! Start a new process
static QProcess *startNewProcess(const QString &executable, const QStringList &arguments = QStringList(), QObject *parent = 0);
//! \brief Server loop
//! Server loop
static void serverLoop(BlackCore::CRuntime *runtime);
};