PrevUpHomeNext

Struct template static_traits

detail::static_traits

Synopsis

// In header: <detail/inplace.hpp>

template<typename impl_type, typename storage_type> 
struct static_traits : public storage_type {
  // types
  typedef traits::copyable< impl_type, inplace_allocator<>> traits_type;
  typedef typename traits_type::pointer                     traits_ptr; 

  // public member functions
  void construct_traits();
  traits_ptr get_traits() const;
  void set_traits(const traits_ptr);
};

Description

static_traits public member functions

  1. void construct_traits();
  2. traits_ptr get_traits() const;
  3. void set_traits(const traits_ptr ptr);

PrevUpHomeNext