Udostępnij za pośrednictwem


ALLOCATOR_DECL (<allocators>)

Plony alokatora szablonu klasy.

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

Uwagi

Makro daje definicja szablonu template <class Type> class name {.....} i specjalizacji template <> class name<void> {.....} które definiują klasy szablonu programu przydzielania, który używa filtr synchronizacji sync i pamięcią podręczną typu cache.

Dla kompilatory, które można skompilować ponownego wiązania definicja szablonu wynikowy 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 kompilatory, których nie można skompilować ponownego wiązania definicja szablonu wynikowy 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>

Obszar nazw: stdext

Zobacz też

Informacje

<allocators>