1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00
LibQQt/test/QQtFMODTest/mainwindow.cpp

20 lines
368 B
C++
Raw Normal View History

2018-06-01 21:26:06 +08:00
#include "mainwindow.h"
#include "ui_mainwindow.h"
2018-06-01 22:24:17 +08:00
#include "fmod.hpp"
#include <qqtcore.h>
2018-06-01 21:26:06 +08:00
2018-06-01 22:24:17 +08:00
MainWindow::MainWindow ( QWidget* parent ) :
QMainWindow ( parent ),
ui ( new Ui::MainWindow )
2018-06-01 21:26:06 +08:00
{
2018-06-01 22:24:17 +08:00
ui->setupUi ( this );
int busy = 0;
FMOD::File_GetDiskBusy ( &busy );
pline() << busy;
2018-06-01 21:26:06 +08:00
}
MainWindow::~MainWindow()
{
delete ui;
}