code generation
Posted: Sat Jan 15, 2011 2:00 pm
Hi,
is it possible to generate e.g. function declarations automatically?
e.g. i got my file foobar.cpp
and implement a funtion
now i want to generate the declarations automatically in foobar.h or when there is none create one
that should be done by something like rightclick a function and choose "code generation->generate declarations" and would insert something like
into foobar.h
i just wondering because there is a codegenerator in contextmenu for "add function implementation" but not for add function declaration but it looks like its doing nothing for me
(maybe i have not figured out how to use it?)
is it possible to generate e.g. function declarations automatically?
e.g. i got my file foobar.cpp
and implement a funtion
Code: Select all
int foo(int bar){
do something;
}
that should be done by something like rightclick a function and choose "code generation->generate declarations" and would insert something like
Code: Select all
int foo(int);
i just wondering because there is a codegenerator in contextmenu for "add function implementation" but not for add function declaration but it looks like its doing nothing for me
(maybe i have not figured out how to use it?)