X-Git-Url: https://deadsoftware.ru/gitweb?p=odcread.git;a=blobdiff_plain;f=textmodel.h;h=9cab44db5d1c115f280980522af8ede7b98394f2;hp=bc1480873fbb389c0ad386654f330ed462afd8d4;hb=bfa2551119497089b987c2bce3e2f512f9e2130f;hpb=9199c6da801c1555dadb23b230b400e3f1364abc diff --git a/textmodel.h b/textmodel.h index bc14808..9cab44d 100644 --- a/textmodel.h +++ b/textmodel.h @@ -29,15 +29,21 @@ namespace odc { }; class LongPiece : public TextPiece { + private: + CHAR *d_buf; public: LongPiece(size_t len); + ~LongPiece(); virtual void read(Reader &reader); virtual std::string toString(); }; class ShortPiece : public TextPiece { + private: + SHORTCHAR *d_buf; public: ShortPiece(size_t len); + ~ShortPiece(); virtual void read(Reader &reader); virtual std::string toString(); };