XPlor/libs/xassets/xaudiostreaminfo.cpp

22 lines
335 B
C++
Raw Normal View History

2025-08-14 17:30:25 -04:00
#include "xaudiostreaminfo.h"
XAudioStreamInfo::XAudioStreamInfo()
: XAsset()
, mNumStreams(0)
, mChannelCount(0)
2025-08-14 17:30:25 -04:00
{
SetName("Audio Stream Info");
2025-08-14 17:30:25 -04:00
}
void XAudioStreamInfo::ParseData(XDataStream *aStream)
2025-08-14 17:30:25 -04:00
{
Q_UNUSED(aStream);
2025-08-14 17:30:25 -04:00
// TODO: Fill in XAudioStreamInfo::ParseData
2025-08-14 17:30:25 -04:00
}
void XAudioStreamInfo::Clear()
{
}