Updated libs/xassets/xoperand.h

This commit is contained in:
RedLine AI Agent 2025-09-05 21:35:37 +00:00
parent cc30cda7cc
commit c45df3444c

22
libs/xassets/xoperand.h Normal file
View File

@ -0,0 +1,22 @@
#ifndef XOPERAND_H
#define XOPERAND_H
#include "xasset.h"
#include "xmenuenums.h"
#include "xoperandinternaldataunion.h"
class XOperand : public XAsset
{
public:
explicit XOperand();
~XOperand();
void ParseData(QDataStream *aStream) override;
void Clear() override;
private:
XExpDataType mDataType;
XOperandInternalDataUnion mInternals;
};
#endif // XOPERAND_H