Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template parse_match_result

boost::date_time::parse_match_result

Synopsis

// In header: <boost/date_time/string_parse_tree.hpp>

template<typename charT> 
struct parse_match_result {
  // types
  typedef charT > ;

  enum PARSE_STATE { PARSE_ERROR = = -1 };

  // construct/copy/destruct
  ();

  // public member functions
   () ;
  charT () ;
  bool () ;

  // public data members
   cache;
  unsigned short match_depth;
  short current_match;
};

Description

parse_match_result public construct/copy/destruct

  1. ();

parse_match_result public member functions

  1.  () ;
  2. charT () ;
  3. bool () ;
    Returns true if more characters were parsed than was necessary.

    Should be used in conjunction with last_char() to get the remaining character.


PrevUpHomeNext