mirror of
https://github.com/idolpx/libMeatloaf.git
synced 2025-12-06 04:38:49 -05:00
12 lines
327 B
C++
12 lines
327 B
C++
#include "d71.h"
|
|
|
|
/********************************************************
|
|
* File implementations
|
|
********************************************************/
|
|
|
|
MStream* D71File::getDecodedStream(std::shared_ptr<MStream> containerIstream) {
|
|
Debug_printv("[%s]", url.c_str());
|
|
|
|
return new D71IStream(containerIstream);
|
|
}
|