Files
Sun1602/Tools/SUNAutoScriptMaker/Parser.cpp
T
2022-10-26 12:25:11 +08:00

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;
}