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 + + + + + + + +