equal
deleted
inserted
replaced
|
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #ifndef __MSOCKETCONTROLLERSTORE_H__ |
|
17 #define __MSOCKETCONTROLLERSTORE_H__ |
|
18 |
|
19 #include <e32std.h> |
|
20 |
|
21 // Forward declarations |
|
22 class CSocketController; |
|
23 |
|
24 /** |
|
25 The MSocketControllerStore API provides support for socket controller objects |
|
26 to remove themselves from the socket controller store. |
|
27 |
|
28 @internalTechnology |
|
29 @prototype |
|
30 */ |
|
31 class MSocketControllerStore |
|
32 { |
|
33 public: |
|
34 /** |
|
35 Remove the socket controller object from the store. The socket controller |
|
36 is removed from the store - the store no longer has ownership of the socket |
|
37 controller. |
|
38 @param aOrphanedSocketController The socket controller to be removed from the store. |
|
39 */ |
|
40 virtual void SocketControllerShutdown(CSocketController& aOrphanedSocketController) =0; |
|
41 }; |
|
42 |
|
43 #endif // __MSOCKETCONTROLLERSTORE_H__ |