Update of /cvsroot/adobe-source/adobe-source/adobe/future/source
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17172/adobe/future/source
Modified Files:
assemblage.cpp
Log Message:
asl 1.0.2
Index: assemblage.cpp
===================================================================
RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/source/assemblage.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** assemblage.cpp 3 Mar 2005 06:58:16 -0000 1.2
--- assemblage.cpp 2 Apr 2005 05:47:36 -0000 1.3
***************
*** 16,21 ****
/*************************************************************************************************/
! assemblage_t::assemblage_t() :
! group_m(INT_MAX)
{
}
--- 16,20 ----
/*************************************************************************************************/
! assemblage_t::assemblage_t()
{
}
***************
*** 26,39 ****
{
// disconnect all our connections
! adobe::for_each(connections_m, boost::bind(connection_t::disconnect, _1));
- #if 0
- // signal destruction, cleaning up what the assemblage owns
- destruct_signal_m();
- #endif
/*
REVISIT (sparent) : This should be
! adobe::for_each_reverse(destruct_singnal_m, adobe::apply());
*/
--- 25,34 ----
{
// disconnect all our connections
! adobe::for_each(connections_m, boost::bind(&connection_t::disconnect, _1));
/*
REVISIT (sparent) : This should be
! adobe::for_each_reverse(destruct_signal_m, adobe::apply());
*/
***************
*** 60,66 ****
void assemblage_t::signal_destruction(const destruct_slot_t& slot)
{
- #if 0
- destruct_signal_m.connect(--group_m, slot);
- #endif
destruct_signal_m.push_back(slot);
}
--- 55,58 ----
|