mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-09-05 03:54:32 +00:00
16 lines
247 B
C++
16 lines
247 B
C++
|
|
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
||
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
|
||
|
|
#ifndef QT_META_H
|
||
|
|
#define QT_META_H
|
||
|
|
|
||
|
|
#include <QObject>
|
||
|
|
|
||
|
|
namespace QtCommon::Meta {
|
||
|
|
|
||
|
|
//
|
||
|
|
void RegisterMetaTypes();
|
||
|
|
|
||
|
|
}
|
||
|
|
#endif // QT_META_H
|