mirror of
https://github.com/logos-co/logos-cpp-sdk.git
synced 2026-08-31 01:31:10 +00:00
14 lines
586 B
C
14 lines
586 B
C
#ifndef PLUGIN_INTROSPECT_H
|
|||
|
|
#define PLUGIN_INTROSPECT_H
|
||
|
|
|
||
|
|
// The QPluginLoader-introspection mode: given a BUILT plugin, walk its
|
||
|
|
// QMetaObject and emit a consumer wrapper for it. main() falls through to this
|
||
|
|
// when its own modes do not claim the arguments.
|
||
|
|
//
|
||
|
|
// This lived in `legacy/main.cpp` behind `legacy_main()`. The directory was not
|
||
|
|
// a legacy library — it held exactly one exported symbol and one reachable
|
||
|
|
// mode — so it was merged here rather than kept as a parallel implementation.
|
||
|
|
int runPluginIntrospectMode(int argc, char* argv[]);
|
||
|
|
|
||
|
|
#endif // PLUGIN_INTROSPECT_H
|