0
0
mirror of https://github.com/yse/easy_profiler.git synced 2024-12-28 01:04:41 +08:00
easy_profiler/profiler_gui/globals_qobjects.cpp

36 lines
1.1 KiB
C++
Raw Normal View History

2016-08-08 22:45:57 +03:00
/************************************************************************
* file name : globals_qobjects.cpp
2016-08-08 22:45:57 +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
* ----------------- :
* description : The file contains implementation of EasyGlobalSignals QObject class.
2016-08-08 22:45:57 +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 {
EasyGlobalSignals::EasyGlobalSignals() : QObject()
2016-08-08 22:45:57 +03:00
{
}
EasyGlobalSignals::~EasyGlobalSignals()
2016-08-08 22:45:57 +03:00
{
}
} // END of namespace profiler_gui.
//////////////////////////////////////////////////////////////////////////