MSVC에서는 C# 등에서 경험할 수 있는 region 지시어를 제공한다.
#pragma region // Code code code // ... #pragma endregion
크로스플랫폼에서 사용할 수 있는 코드라면 아래와 같이 쓰는 게 좋을 것이다.
http://stackoverflow.com/questions/12894454/how-to-remove-gcc-warning-on-pragma-region
#ifndef __GNUC__ #pragma region #endif // Stuff... #ifndef __GNUC__ #pragma endregion #endif
아래는 리젼에 대해, 구글에서 적당히 가져온 이미지
[PNG image (14.63 KB)]
Document
pragma
region
Retrieved from http://hyacinth.byus.net/moniwiki/wiki.php/C++/pragma region
last modified 2015-02-17 13:44:48