From cc30cda7ccc088f95da7268b6a5ff868fee7a2cf Mon Sep 17 00:00:00 2001 From: RedLine AI Agent Date: Fri, 5 Sep 2025 21:35:35 +0000 Subject: [PATCH] Updated libs/xassets/xoperand.cpp --- libs/xassets/xoperand.cpp | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 libs/xassets/xoperand.cpp diff --git a/libs/xassets/xoperand.cpp b/libs/xassets/xoperand.cpp new file mode 100644 index 0000000..02c66ea --- /dev/null +++ b/libs/xassets/xoperand.cpp @@ -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(); +}