MCPcopy Create free account
hub / github.com/AutoHotkey/AutoHotkey / ClassDef

Class ClassDef

source/script_object.cpp:2922–2930  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2920
2921
2922struct ClassDef
2923{
2924 LPCTSTR name;
2925 Object **proto_var;
2926 ClassFactoryDef factory;
2927 ObjectMember *members;
2928 int member_count;
2929 std::initializer_list<ClassDef> subclasses;
2930};
2931
2932void DefineClasses(Object *aBaseClass, Object *aBaseProto, std::initializer_list<ClassDef> aClasses)
2933{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected