MCPcopy Create free account
hub / github.com/BrigJS/brig / BrigMetaMethod

Class BrigMetaMethod

src/DynamicQMetaObjectBuilder.h:14–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12 using namespace node;
13
14 struct BrigMetaMethod {
15 char *name;
16 char *signature;
17 QList<QByteArray> arguments;
18 Nan::Callback *handler = NULL;
19
20 ~BrigMetaMethod() {
21
22 arguments.clear();
23
24 delete name;
25 delete handler;
26 delete signature;
27 }
28 };
29
30 struct BrigMetaSignal {
31 char *name;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected