C++ Rookiss Part1 C++ 프로그래밍 입문 : 파일 분할 관리 복습
🙇♀️파일 분할 관리 복습
소스파일 -> 새항목 -> 헤더파일, cpp 파일
🪐파일 분할 관리 복습
// 헤더 파일
// #include <>를 추가하지 않음
#pragma once
#ifndef _TEST1_H__ // 옛날 버전
#define _TEST1_H__ // 옛날 버전
void Test1();
void Test2();
void Test3();
#endif // 옛날 버전
// 함수 구현부
#include <iostream>
using namespace std;
#include "Test1.h"
void Test1()
{
}
void Test2()
{
}
void Test3()
{
}
#include <iostream>
using namespace std;
#include "Test1.h"
// 주제 : 파일 분할 관리
int main()
{
// 소스파일 -> 새항목 -> 헤더파일
Test1();
return 0;
}