mirror of
https://github.com/yse/easy_profiler.git
synced 2024-12-28 01:04:41 +08:00
26 lines
468 B
C
26 lines
468 B
C
|
#ifndef GLOBALS_QOBJECTS_H
|
||
|
#define GLOBALS_QOBJECTS_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include "profiler/profiler.h"
|
||
|
|
||
|
namespace profiler_gui {
|
||
|
class ProfGlobalSignals final : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
|
||
|
ProfGlobalSignals();
|
||
|
virtual ~ProfGlobalSignals();
|
||
|
|
||
|
signals:
|
||
|
|
||
|
void selectedThreadChanged(::profiler::thread_id_t _id);
|
||
|
void selectedBlockChanged(unsigned int _block_index);
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // GLOBALS_QOBJECTS_H
|