XPlor/libs/xassets/xstreamsourceinfo.cpp

28 lines
346 B
C++
Raw Normal View History

2025-09-03 13:25:47 -04:00
#include "xstreamsourceinfo.h"
XStreamSourceInfo::XStreamSourceInfo()
: XAsset()
, mStream(0)
, mOffset(0)
, mType(0)
{
}
XStreamSourceInfo::~XStreamSourceInfo()
{
}
void XStreamSourceInfo::Clear()
{
mStream = 0;
mOffset = 0;
mType = 0;
}
void XStreamSourceInfo::ParseData(QDataStream *aStream)
{
}