mirror of
https://github.com/DrPerkyLegit/LCEServerTest.git
synced 2026-05-21 19:14:33 +00:00
11 lines
257 B
C++
11 lines
257 B
C++
#include "stdafx.h"
|
|
#include "File.h"
|
|
#include "InputOutputStream.h"
|
|
#include "InputStream.h"
|
|
|
|
InputStream *InputStream::getResourceAsStream(const wstring &fileName)
|
|
{
|
|
File file( fileName );
|
|
|
|
return file.exists() ? new FileInputStream( file ) : nullptr;
|
|
} |