16 lines
184 B
C++
16 lines
184 B
C++
#pragma once
|
|
|
|
class QWidget;
|
|
class QWindow;
|
|
|
|
namespace QtImGui {
|
|
|
|
#ifdef QT_WIDGETS_LIB
|
|
void initialize(QWidget *window);
|
|
#endif
|
|
|
|
void initialize(QWindow *window);
|
|
void newFrame();
|
|
|
|
}
|