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