2016-08-08 22:45:57 +03:00
|
|
|
/************************************************************************
|
2016-08-08 23:11:27 +03:00
|
|
|
* file name : globals_qobjects.cpp
|
2016-08-08 22:45:57 +03:00
|
|
|
* ----------------- :
|
2016-08-08 23:11:27 +03:00
|
|
|
* creation time : 2016/08/08
|
|
|
|
* copyright : (c) 2016 Victor Zarubkin, Sergey Yagovtsev
|
2016-08-08 22:45:57 +03:00
|
|
|
* author : Victor Zarubkin
|
|
|
|
* email : v.s.zarubkin@gmail.com
|
|
|
|
* ----------------- :
|
2016-08-18 23:26:41 +03:00
|
|
|
* description : The file contains implementation of EasyGlobalSignals QObject class.
|
2016-08-08 22:45:57 +03:00
|
|
|
* ----------------- :
|
2016-08-08 23:11:27 +03:00
|
|
|
* change log : * 2016/08/08 Sergey Yagovtsev: moved sources from globals.cpp
|
2016-08-08 22:45:57 +03:00
|
|
|
* :
|
|
|
|
* : *
|
|
|
|
* ----------------- :
|
|
|
|
* license : TODO: add license text
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#include "globals_qobjects.h"
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
namespace profiler_gui {
|
|
|
|
|
2016-08-18 23:26:41 +03:00
|
|
|
EasyGlobalSignals::EasyGlobalSignals() : QObject()
|
2016-08-08 22:45:57 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-08-18 23:26:41 +03:00
|
|
|
EasyGlobalSignals::~EasyGlobalSignals()
|
2016-08-08 22:45:57 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
} // END of namespace profiler_gui.
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|