mirror of
https://github.com/yse/easy_profiler.git
synced 2024-12-28 01:04:41 +08:00
8f30948105
(profiler_gui) Moving sources into separate files; (profiler_gui) Rename Prof* classes into Easy*; (EasyGraphicsView) Optimized performance by not painting items which were not expanded in TreeWidget. While there are no range selected for TreeWidget, only top-level blocks are painted on scene.
36 lines
1.1 KiB
C++
36 lines
1.1 KiB
C++
/************************************************************************
|
|
* file name : globals_qobjects.cpp
|
|
* ----------------- :
|
|
* creation time : 2016/08/08
|
|
* copyright : (c) 2016 Victor Zarubkin, Sergey Yagovtsev
|
|
* author : Victor Zarubkin
|
|
* email : v.s.zarubkin@gmail.com
|
|
* ----------------- :
|
|
* description : The file contains implementation of EasyGlobalSignals QObject class.
|
|
* ----------------- :
|
|
* change log : * 2016/08/08 Sergey Yagovtsev: moved sources from globals.cpp
|
|
* :
|
|
* : *
|
|
* ----------------- :
|
|
* license : TODO: add license text
|
|
************************************************************************/
|
|
|
|
#include "globals_qobjects.h"
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
namespace profiler_gui {
|
|
|
|
EasyGlobalSignals::EasyGlobalSignals() : QObject()
|
|
{
|
|
}
|
|
|
|
EasyGlobalSignals::~EasyGlobalSignals()
|
|
{
|
|
}
|
|
|
|
} // END of namespace profiler_gui.
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|