mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 00:48:38 +00:00
23 lines
518 B
C++
23 lines
518 B
C++
#include <QMediaBindableInterface>
|
|
#include <QMediaObject>
|
|
#include <qmediabindableinterface.h>
|
|
#include "gen_qmediabindableinterface.h"
|
|
|
|
#ifndef _Bool
|
|
#define _Bool bool
|
|
#endif
|
|
#include "_cgo_export.h"
|
|
|
|
QMediaObject* QMediaBindableInterface_MediaObject(const QMediaBindableInterface* self) {
|
|
return self->mediaObject();
|
|
}
|
|
|
|
void QMediaBindableInterface_Delete(QMediaBindableInterface* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<QMediaBindableInterface*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|