datacommsserver/esockserver/core_states/ss_corepractivities.cpp
changeset 65 41cc8e7ff496
parent 40 34fc115b8742
child 71 c5f26e3de961
equal deleted inserted replaced
40:34fc115b8742 65:41cc8e7ff496
  1111 
  1111 
  1112 void CBindToActivity::AddClientAsSuccessfulL(Messages::RNodeInterface* aDataClient)
  1112 void CBindToActivity::AddClientAsSuccessfulL(Messages::RNodeInterface* aDataClient)
  1113 	{
  1113 	{
  1114 	__ASSERT_DEBUG(aDataClient, User::Panic(KCorePrPanic, KPanicDataClient));
  1114 	__ASSERT_DEBUG(aDataClient, User::Panic(KCorePrPanic, KPanicDataClient));
  1115 	__ASSERT_DEBUG(iSuccessfulDataClients.Find(aDataClient) == KErrNotFound, User::Panic(KCorePrPanic, KPanicIncorrectState));
  1115 	__ASSERT_DEBUG(iSuccessfulDataClients.Find(aDataClient) == KErrNotFound, User::Panic(KCorePrPanic, KPanicIncorrectState));
  1116 	iSuccessfulDataClients.Append(aDataClient);
  1116 	iSuccessfulDataClients.AppendL(aDataClient);
  1117 	}
  1117 	}
  1118 
  1118 
  1119 void CBindToActivity::RemoveClientFromSuccessful(Messages::RNodeInterface* aDataClient)
  1119 void CBindToActivity::RemoveClientFromSuccessful(Messages::RNodeInterface* aDataClient)
  1120 	{
  1120 	{
  1121 	TInt index = iSuccessfulDataClients.Find(aDataClient);
  1121 	TInt index = iSuccessfulDataClients.Find(aDataClient);