Subject: Re: [Boost-users] multi index container [solved]
From: Dejan (xamiw_at_[hidden])
Date: 2010-02-03 12:18:53


Got it:

typedef multi_index_container
<
  employee*,
  indexed_by
  <
    ordered_unique<identity<employee*> >,
    ordered_unique<member<employee, int, &employee::id> >
>
> employee_set;