I would like to create something for use in Visual Studio (C ++), perhaps an extension that will be used with two well-known functions inside. Let me try to explain. Let's say I have two functions start () and stop () . I usually use the following functions:
start(); do something... stop();
In some cases, it may be confusing to know what starts and what stops:
start(); do something... start(); do something... start(); do something... stop(); stop(); stop();
To understand what starts and what stops, I need to identify all the lines manually. I would like to create something like:
start(){ do something.... start(){ do something ... } }
Each time I close the start brackets, the stop function will be closed and the code will be much more organized.
Do you have any idea on how to do this or something like that?
c ++ visual-studio
Ricardo racciore
source share