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