Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct asn_base_type_t

boost::asn1::asn_base_type_t —

Synopsis

struct asn_base_type_t {
  // construct/copy/destruct
  asn_base_type_t(const __asn_base_type = asn_none);
  ~asn_base_type_t();

  // public member functions
  const __asn_base_type base_type() const;

  __asn_base_type __asn_object_id;
};

Description

Base type for type trait recognition in the pdu_base_x_t templates. The asn_base_t, pdu_base_t and pdu_base_of_t types inherit from this structure and so that the Boost.TypeTraits functionality will work when trying to identify a ASN1 object type.

asn_base_type_t construct/copy/destruct

  1. asn_base_type_t(const __asn_base_type id = asn_none);
  2. ~asn_base_type_t();

asn_base_type_t public member functions

  1. const __asn_base_type base_type() const;
Copyright © 2007 Andreas Haberstroh

PrevUpHomeNext