For code formatting there are several different standards. What is the standard format for Visaul Studio 2010?
How best to separate several functions in the code? sticking in between
/********/
/********/
/********/
or something else?
UPD are all attached to the commenting code and the names of functions / variables. Although the question is different. If this is important to you - all functions are documented by doxygen in the .h file, there is a detailed description of each function. I want to know how I divide the code of these functions in a .cpp file. Not empty lines, by golly.
/********/or something else? There is no need to insert such separators between functions. You just need to comment on what the function does. - insolor