Udostępnij za pośrednictwem


ALLOCATOR_DECL (<allocators>)

Daje w wyniku alokatora szablonu klasy.

#define ALLOCATOR_DECL(cache, sync, name) <alloc_template>

Uwagi

Makro daje definicji szablonu template <class Type> class name {.....} i specjalizacji template <> class name<void> {.....} które wspólnie określają szablonu programu przydzielania klasy, która używa filtr synchronizacji sync i pamięć podręczna typu cache.

Dla kompilatory, które można kompilować ponownego wiązania wynikowy definicji szablonu wygląda następująco:

template <class Type> class name
    : public stdext::allocators::allocator_base<Type, sync<cache > >
    {
    public:
        name() {}
        template <class Other> name(const name<Other>&) {}
        template <class Other> name& operator = (const name<Other>&)
            {return *this; }
        template <class Other> struct rebind
            {    /* convert a name<Type> to a name<Other> */
            typedef name<Other> other;
            };
    };

Dla kompilatorów, których nie można skompilować ponownego wiązania wynikowy definicji szablonu wygląda następująco:

template <class Type< class name
    : public stdext::allocators::allocator_base<Type,
        sync<stdext::allocators::rts_alloc<cache > > >
    {
    public:
        name() {}
        template <class Other> name(const name<Other>&) {}
        template <class Other> name& operator = (const name<Other>&)
            {return *this; }
    };

Wymagania

Nagłówek:<allocators>

Przestrzeń nazw: stdext

Zobacz też

Informacje

<allocators>