mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 15:43:37 +00:00
9 lines
247 B
C++
9 lines
247 B
C++
#include "../../Platform/stdafx.h"
|
|
#include "../Files/File.h"
|
|
#include "InputOutputStream.h"
|
|
#include "InputStream.h"
|
|
|
|
InputStream *InputStream::getResourceAsStream(const std::wstring &fileName)
|
|
{
|
|
return new FileInputStream( File( fileName ) );
|
|
} |