You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
vmprofiler-qt/src/qvm_handlers.h

18 lines
407 B

#pragma once
#include "qvm_inspector.h"
class qvm_handlers : public QObject
{
Q_OBJECT
public:
explicit qvm_handlers( qvm_inspector *g_main_window );
private:
Ui::QVMProfilerClass *ui;
qvm_inspector *g_main_window;
void update_transforms( vm::handler::handler_t &vm_handler );
void update_instrs( vm::handler::handler_t &vm_handler );
private slots:
void on_select();
};