21 lines
288 B
C++
21 lines
288 B
C++
#include "StdAfx.h"
|
|
#include ".\parser.h"
|
|
#include <io.h>
|
|
|
|
Parser::Parser(void)
|
|
{
|
|
}
|
|
|
|
Parser::~Parser(void)
|
|
{
|
|
}
|
|
|
|
BOOL Parser::Load( TCHAR* pszFileName )
|
|
{
|
|
if( !pszFileName ) return FALSE;
|
|
|
|
if( _access( pszFileName, 0 ) == -1 ) //파일이 존재하지 않으면..
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
} |