Scripting the editor
-
Hi,
I would like make some useful script to increase the development. The question is: how can I reach the text editor via bash, python (on Linux) or other script? Please considering the following:
I am define a method, like this:
@
void ThrowException() const throw(std::exception);
@and I would like to make a script what make a doxygen header from the selected line. The script have some result, like this:
@
//! \fn void ThrowException()
//! \brief
//! \param
//! \param
//! \exception
//! \return
//! \details
void ThrowException() const throw(std::exception);
@Regards,
Norbert -
Hi Norbert,
This isn't an answer to your question as such, but if you are predominantly interested in automating the insertion of Doxygen stubs, maybe you should have a look at the "Doxygen plugin for QtCreator":http://dev.kofee.org/projects/qtcreator-doxygen/