-
반응형
Doxygen Macro를 만들었다.
환경 : vs2010
comment 기능
- InsertClassComments
Class 설명을 기술.
입력박스에 Class 이름을 적으면 @class의 내용을 함께 만들어줌.
/**
* @class 입력된 Class 이름
* @breif
*
* */
- InsertDetailComments
자세한 설명을 기술.
/** Brief Description
*
* Write a detailed description
* */
InsertMethodComments
method의 설명을 기술.
함수 선언부분을 마우스 드래그하여 실행하면 param의 내용을 함께 출력된다.
/**
* @param
* @return
* */
- InsertSimpleComments
간단한 설명을 기술.
/** */
visual studio에서 단축키에 매핑 시켜서 사용하면 된다.
[메뉴바]-[도구]-[옵션]-[환경설정]-[키보드]반응형 - InsertClassComments