#include "StdAfx.h" #include ".\baseparser.h" #include BaseParser::BaseParser(void) { } BaseParser::~BaseParser(void) { } //ÆÄÀÏÀÌ ÀÖ´ÂÁö üũ..¿Í ÆÄÀÏÀ̸§ ¼¼ÆÃ. BOOL BaseParser::Init( const TCHAR* pszFileName ) { if( !pszFileName ) return FALSE; m_szFileName[0] = '0'; if( _access( pszFileName, 0 ) != -1 ) //ÆÄÀÏÀÌ Á¸ÀçÇϸé. { strncpy( m_szFileName, pszFileName, MAX_PATH ); m_szFileName[MAX_PATH-1] = '0'; return TRUE; } return FALSE; }