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
|
2016-09-06 21:49:32 +03:00
|
|
|
* authors : Victor Zarubkin, Sergey Yagovtsev
|
|
|
|
* email : v.s.zarubkin@gmail.com, yse.sey@gmail.com
|
2016-08-08 22:45:57 +03:00
|
|
|
* ----------------- :
|
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
|
|
|
* :
|
|
|
|
* : *
|
|
|
|
* ----------------- :
|
2016-09-06 21:49:32 +03:00
|
|
|
* license : Lightweight profiler library for c++
|
|
|
|
* : Copyright(C) 2016 Sergey Yagovtsev, Victor Zarubkin
|
|
|
|
* :
|
|
|
|
* : This program is free software : you can redistribute it and / or modify
|
|
|
|
* : it under the terms of the GNU General Public License as published by
|
|
|
|
* : the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* : (at your option) any later version.
|
|
|
|
* :
|
|
|
|
* : This program is distributed in the hope that it will be useful,
|
|
|
|
* : but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
|
|
|
|
* : GNU General Public License for more details.
|
|
|
|
* :
|
|
|
|
* : You should have received a copy of the GNU General Public License
|
|
|
|
* : along with this program.If not, see <http://www.gnu.org/licenses/>.
|
2016-08-08 22:45:57 +03:00
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#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.
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|