XPlor/libs/xassets/xstreamsourceinfo.cpp

30 lines
445 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)
{
2025-09-10 21:58:26 -04:00
SetName("Stream Source Info");
2025-09-03 13:25:47 -04:00
}
XStreamSourceInfo::~XStreamSourceInfo()
{
}
void XStreamSourceInfo::Clear()
{
mStream = 0;
mOffset = 0;
mType = 0;
}
2025-09-10 21:58:26 -04:00
void XStreamSourceInfo::ParseData(XDataStream *aStream)
2025-09-03 13:25:47 -04:00
{
2025-09-10 21:58:26 -04:00
Q_UNUSED(aStream);
// TODO: Fill in XStreamSourceInfo::ParseData
2025-09-03 13:25:47 -04:00
}