libMeatloaf/lib/meatloaf/network/ipfs.cpp
2024-01-08 11:58:15 -06:00

22 lines
504 B
C++

// #include "ipfs.h"
// #include "../../../include/global_defines.h"
// #include "../../../include/debug.h"
// MStream* IPFSFile::getSourceStream(std::ios_base::openmode mode) {
// // has to return OPENED stream
// //Debug_printv("[%s]", url.c_str());
// MStream* istream = new IPFSIStream(url);
// istream->open();
// return istream;
// };
// bool IPFSIStream::open() {
// return m_http.GET(url);
// };
// bool IPFSIStream::seek(uint32_t pos) {
// return true;
// }