C++/pragma region

MSVC에서는 C# 등에서 경험할 수 있는 region 지시어를 제공한다.

  1. #pragma region // Code code code
  2. // ...
  3. #pragma endregion

크로스플랫폼에서 사용할 수 있는 코드라면 아래와 같이 쓰는 게 좋을 것이다.
http://stackoverflow.com/questions/12894454/how-to-remove-gcc-warning-on-pragma-region
  1. #ifndef __GNUC__
  2. #pragma region
  3. #endif
  4. // Stuff...
  5. #ifndef __GNUC__
  6. #pragma endregion
  7. #endif

아래는 리젼에 대해, 구글에서 적당히 가져온 이미지
nPFCK.png
[PNG image (14.63 KB)]



이 글에는 0 개의 댓글이 있습니다.