$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-users] success of a multi-index container insertion
From: Goran (xamiw_at_[hidden])
Date: 2009-04-04 11:37:51
Hello all!
As I need to know if a insertion in my multi-index container succeded or
not I've asked me and now you: How can I get a bool from inserting a new
object?
My problem:
MyMultiIndex mmi;
MyClass mc0;
MyClass mc1 = mc0;
mmi.insert(mc0); // mc0 inserted
mmi.insert(mc1); // mc1 not inserted
Thanks, Goran