Scripting the editor
-
wrote on 29 Jan 2013, 16:02 last edited by
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 -
wrote on 31 Jan 2013, 18:05 last edited by
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/
1/2