equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef __SDP_ATTRIBUTE_NOTIFIER_H__ |
|
20 #define __SDP_ATTRIBUTE_NOTIFIER_H__ |
|
21 |
|
22 class CSdpAttrValue; |
|
23 |
|
24 |
|
25 /*! |
|
26 @class MSdpAttributeNotifier |
|
27 |
|
28 @discussion An instance of MSdpAttributeNotifier is used to read selected SDP Attribute |
|
29 elements from an attribute value. |
|
30 */ |
|
31 class MSdpAttributeNotifier |
|
32 { |
|
33 public: |
|
34 /*! |
|
35 @function FoundElementL |
|
36 |
|
37 @discussion Read the data element |
|
38 @param aKey a key that identifies the element |
|
39 @param aValue the data element |
|
40 */ |
|
41 virtual void FoundElementL(TInt aKey, CSdpAttrValue& aValue) = 0; |
|
42 |
|
43 }; |
|
44 |
|
45 |
|
46 #endif // __SDP_ATTRIBUTE_NOTIFIER_H__ |