47. C++ bindings generator¶
The cpp_bind module implements generation of C++ bindings for the Daslang interfaces.
All functions and symbols are in “cpp_bind” module, use require to get access to it.
require daslib/cpp_bind
For example, from tutorial04.das
require fio
require ast
require daslib/cpp_bind
[init]
def generate_cpp_bindings
let root = get_das_root() + "/examples/tutorial/"
fopen(root + "tutorial04_gen.inc","wb") <| $ ( cpp_file )
log_cpp_class_adapter(cpp_file, "TutorialBaseClass", typeinfo(ast_typedecl type<TutorialBaseClass>))
47.1. Generation of bindings¶
-
log_cpp_class_adapter
(cpp_file: file; name: string const; cinfo: TypeDeclPtr)¶
argument |
argument type |
---|---|
cpp_file |
|
name |
string const |
cinfo |
|
Generates C++ class adapter for the Daslang class. Intended use:
log_cpp_class_adapter(cppFileNameDotInc, "daslangClassName", typeinfo(ast_typedecl type<daslangClassName>))
get invoke