From 04daaeaf7faf3995a050248595d9348e45d1a839 Mon Sep 17 00:00:00 2001 From: RedLine AI Agent Date: Fri, 5 Sep 2025 21:24:53 +0000 Subject: [PATCH] [No changes] --- libs/xassets/xcolumninfo.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 libs/xassets/xcolumninfo.h diff --git a/libs/xassets/xcolumninfo.h b/libs/xassets/xcolumninfo.h new file mode 100644 index 0000000..106c4e4 --- /dev/null +++ b/libs/xassets/xcolumninfo.h @@ -0,0 +1,30 @@ +#ifndef XCOLUMNINFO_H +#define XCOLUMNINFO_H + +#include "xasset.h" + +class XColumnInfo : public XAsset +{ +public: + explicit XColumnInfo(); + ~XColumnInfo(); + + void ParseData(QDataStream *aStream) override; + void Clear() override; + +private: + int mPos; + int mWidth; + int mMaxChars; + int mAlignment; +}; + +#endif // XCOLUMNINFO_H + + + + + + + +