mirror of
https://git.outfoxxed.me/quickshell/quickshell.git
synced 2025-11-04 19:04:56 +11:00
11 lines
288 B
C++
11 lines
288 B
C++
#pragma once
|
|
|
|
// hide a property, function, or signal from typegen
|
|
#define QSDOC_HIDE
|
|
|
|
// override the base class as seen by typegen
|
|
#define QSDOC_BASECLASS(baseclass)
|
|
|
|
// make the type visible in the docs even if not a QML_ELEMENT
|
|
#define QSDOC_ELEMENT
|
|
#define QSDOC_NAMED_ELEMENT(name)
|