format_t::format_t(CGlobalRecords& gRecords, const std::string& fmtstr) : formatstr(), index(0), m_usage_counter(0), m_GlobalRecords(gRecords) { gRecords.char2str16(fmtstr, formatstr); }
xlslib_core::label_t::label_t(CGlobalRecords& gRecords, unsigned32_t rowval, unsigned32_t colval, const std::string& labelstrval, xf_t* pxfval) : cell_t(gRecords, rowval, colval, pxfval), strLabel(), inSST(false) { gRecords.char2str16(labelstrval, strLabel); setType(); }
/* ********************************* * note_t class implementation ********************************* */ note_t::note_t(CGlobalRecords& gRecords, unsigned32_t rowval, unsigned32_t colval, const std::string& msg, const std::string& auth, xf_t* pxfval) : cell_t(gRecords, rowval, colval, pxfval) { gRecords.char2str16(msg, this->text); gRecords.char2str16(auth, this->author); }