lxdcmtag.hpp.svn-base
来自「dicom 文件读写」· SVN-BASE 代码 · 共 29 行
SVN-BASE
29 行
#ifndef LXDCMTAG_HPP_
#define LXDCMTAG_HPP_
#include "LXDicomDef.hpp"
class CLXDcmTag
{
public:
CLXDcmTag();
CLXDcmTag(lstuint16 gTag,lstuint16 eTag);
protected:
lstuint16 m_gTag;
lstuint16 m_eTag;
private:
public:
lstuint16 GetGroupTag() {return m_gTag;};
lstuint16 GetElementTag() {return m_eTag;};
void SetTag(lstuint16 gTag,lstuint16 eTag);
virtual bool operator < (const CLXDcmTag& tag) const;
virtual bool operator == (const CLXDcmTag& tag) const;
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?