feature/test #9

Merged
njohnson merged 318 commits from feature/test into main 2025-09-07 12:35:21 -04:00
2 changed files with 48 additions and 0 deletions
Showing only changes of commit 7b1d269986 - Show all commits

View File

@ -0,0 +1,27 @@
#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)
{
}

View File

@ -0,0 +1,21 @@
#ifndef XSTREAMSOURCEINFO_H
#define XSTREAMSOURCEINFO_H
#include "xasset.h"
class XStreamSourceInfo : public XAsset
{
public:
XStreamSourceInfo();
~XStreamSourceInfo();
virtual void Clear() override;
virtual void ParseData(QDataStream* aStream) override;
private:
quint16 mStream;
quint16 mOffset;
uint mType;
};
#endif // XSTREAMSOURCEINFO_H