Updated libs/xassets/xoperand.cpp

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

25
libs/xassets/xoperand.cpp Normal file
View File

@ -0,0 +1,25 @@
#include "xoperand.h"
XOperand::XOperand()
: XAsset()
, mDataType()
, mInternals()
{
}
XOperand::~XOperand()
{
}
void XOperand::ParseData(QDataStream *aStream)
{
}
void XOperand::Clear()
{
mDataType = VAL_INT;
mInternals.Clear();
}