I need this feature in Code::Blocks edit environment. It maybe like this:
// File Name: Current file.cc
// Description: [blank]
#include .....
...
// Function Name: myFun
// Description: [blank]
// input1: int
// input2: char
// output: void
void myFun(int input1, char input2) {
...
}
I hope the BLUE part, which style is defined in advance and can acquire the FILENAME and function declaration, is inserted automatically by a shortcut key. Does anyone has a solution? A similar implementation can also be accepted. Thanks.