Source code for hwt.hdl.types.string

from hwt.doc_markers import internal
from hwt.hdl.types.hdlType import HdlType


[docs]class HString(HdlType):
[docs] def all_mask(self): return 1
[docs] @internal @classmethod def getValueCls(cls): try: return cls._valCls except AttributeError: from hwt.hdl.types.stringVal import HStringVal cls._valCls = HStringVal return cls._valCls