Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct policy_utc

boost::asn1::policy_utc —

Synopsis

struct policy_utc {

  // public member functions
  uint32_t calcLength(time_type_data_t &) ;
  uint32_t encode(ostream &, time_type_data_t &, uint32_t) ;
  uint32_t decode(istream &, time_type_data_t &, uint32_t) ;
};

Description

policy_utc public member functions

  1. uint32_t calcLength(time_type_data_t & ttd) ;

    Calculates the length of a time_type_data_t for utc encoding

    Parameters:
    ttd

    Value to get the length of

    Returns:

    Bytes necessary to encode

  2. uint32_t encode(ostream & strm, time_type_data_t & ttd, uint32_t len) ;
  3. uint32_t decode(istream & strm, time_type_data_t & ttd, uint32_t len) ;
Copyright © 2007 Andreas Haberstroh

PrevUpHomeNext