|
환경: RAD Studio 2009 ( C++ Builder 2009)
프로젝트 전체 크기가 150M가 되어서 왜 그런 가 보았더니.. 디버그 폴더는 그렇다 치더라도
CReportThread.i 파일이 무려 50메가가 넘더군요.
열어 보니 아래와 같은 내용들이 들어 있던데요..
CReportThread.i 파일의 내용...
-------------------------------------------------------------------------------------------------
/* CReportThread.h 1: */
/* CReportThread.h 2: */
....
/* c:\program files\codegear\rad studio\6.0\include\vcl\vcl.h 1: */
/* c:\program files\codegear\rad studio\6.0\include\vcl\vcl.h 2: */
....
/* c:\program files\codegear\rad studio\6.0\include\vcl\basepch0.h 39: */
/* c:\program files\codegear\rad studio\6.0\include\vcl\basepch0.h 40: */
...
/* c:\program files\codegear\rad studio\6.0\include\rpcndr.h 2745: */RpcSmSwapClientAllocFree (
/* c:\program files\codegear\rad studio\6.0\include\rpcndr.h 2746: */ RPC_CLIENT_ALLOC * ClientAlloc,
...
/* CReportThread.h 11: */class CReportThread : public TThread
/* CReportThread.h 12: */{
/* CReportThread.h 13: */private:
/* CReportThread.h 14: */protected:
/* CReportThread.h 15: */void __fastcall Execute();
/* CReportThread.h 16: */public:
/* CReportThread.h 17: */__fastcall CReportThread(bool CreateSuspended);
/* CReportThread.h 18: */void Process(CReportMessage *pReportMessage);
/* CReportThread.h 19: */};
....
이런 식으로 67만라인이나 들어 있는데..
왜 이런 것인 지요? 지워도 상관 없을 지요?
감사합니다.
|