Changes
Page history
Update idl compiler
authored
Oct 29, 2018
by
Aftab Hussain
Show whitespace changes
Inline
Side-by-side
IDL-Compiler-Documentation.md
0 → 100644
View page @
dd3fd006
Glue code is generated for each module. This is where the names of the files are generated in
`main/main.cpp`
(they are appended with the original name of the module):
```
c++
std
::
string
callee_h
=
new_name
(
m
->
identifier
(),
std
::
string
(
"_callee.h"
));
std
::
string
callee_c
=
new_name
(
m
->
identifier
(),
std
::
string
(
"_callee.c"
));
...
```
\ No newline at end of file