added deconstruct function for TextInputStream

This commit is contained in:
HuYingzhuo(hugo/hyzboy) 2023-10-10 10:56:36 +08:00
parent d5264e1da6
commit 15b86eaf3b

View File

@ -24,6 +24,8 @@ namespace hgl
public: public:
virtual ~ParseCallback()=default;
virtual bool OnBOM(const ByteOrderMask &){return true;} ///<读取到BOM头的回调函数 virtual bool OnBOM(const ByteOrderMask &){return true;} ///<读取到BOM头的回调函数
virtual bool OnLine(T *text,const int len){return true;} virtual bool OnLine(T *text,const int len){return true;}