PrevUpHomeNext

Struct template read_table_result

boost::text::read_table_result

Synopsis

// In header: <boost/text/table_serialization.hpp>

template<typename CharIter> 
struct read_table_result {

  // public member functions
  operator collation_table();

  // public data members
  collation_table table;
  CharIter it;
};

Description

The type returned by read_table(). Contains the resulting collation table and the final position of the iterator from which the table was read.

read_table_result public member functions

  1. operator collation_table();

PrevUpHomeNext