2025-08-14 17:30:25 -04:00
|
|
|
#ifndef XAUDIOFORMATINFO_H
|
|
|
|
|
#define XAUDIOFORMATINFO_H
|
|
|
|
|
|
|
|
|
|
#include "xasset.h"
|
2025-09-10 21:56:37 -04:00
|
|
|
#include "xaudioxmaformat.h"
|
2025-08-14 17:30:25 -04:00
|
|
|
|
2025-09-05 18:35:17 -04:00
|
|
|
#include <QVector>
|
|
|
|
|
|
2025-08-14 17:30:25 -04:00
|
|
|
class XAudioFormatInfo : public XAsset
|
|
|
|
|
{
|
|
|
|
|
public:
|
2025-09-10 21:56:37 -04:00
|
|
|
explicit XAudioFormatInfo();
|
2025-08-14 17:30:25 -04:00
|
|
|
~XAudioFormatInfo();
|
|
|
|
|
|
2025-09-10 21:56:37 -04:00
|
|
|
virtual void ParseData(XDataStream* aStream) override;
|
2025-08-14 17:30:25 -04:00
|
|
|
virtual void Clear() override;
|
|
|
|
|
|
|
|
|
|
private:
|
2025-09-10 21:56:37 -04:00
|
|
|
QVector<XAudioXmaFormat> mStream;
|
2025-08-14 17:30:25 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // XAUDIOFORMATINFO_H
|