Programming

[P]중복된 Header 제거 하는 간단한 방법 중 하나는??

Ronie.Kang 2008. 3. 10. 13:13

중복된 헤더 제거 하는 간단한 방법 중 하나는??

Test.h

#ifndef TEST_H
#define TEST_H

// 헤더 내용 기술


#endif



------------------------


Code.h

#ifndef CODE_H

#define CODE_H

// 내용 기술



#endif


두 헤더에서 중복된 형태를 피 할 수 있습니다.

그럼 고운하루.