mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 14:43:37 +00:00
8 lines
246 B
C++
8 lines
246 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));
|
|
} |