C++/빌드 시 TODO 출력 Edit Diff Refresh Backlink Random Search History Help Setting Hide Show /** ----------------------------------------------------------------------- 빌드시에 TODO 메세지를 출력하기 위한 매크로 #pragma TODO( "요기 구현하셈 " ) 요렇게 사용하면 됨 IT EXPERT, 윈도우 프로그래머를 이한 MFC 구조와 원리, 서진택 저 -------------------------------------------------------------------------*/ #define LINE1(x) #x #define LINE(x) LINE1(x) #define TODO(msg) message( __FILE__"(" LINE(__LINE__) "): [TODO] " msg ) //#define TODO(msg) message( "[TODO] :" __FILE__"(" LINE(__LINE__) ")" msg) #pragma TODO("출력") 1>------ 빌드 시작: 프로젝트: test_dll, 구성: Release Win32 ------ 1>컴파일하고 있습니다... 1>test_dll.cpp 1>.\test_dll.cpp(27): [TODO] 출력 1>링크하고 있습니다... C++ Macro pragma 이 글에는 0 개의 댓글이 있습니다. Please enable JavaScript to view the comments powered by Disqus. comments powered by Disqus