equal
deleted
inserted
replaced
|
1 // Copyright (c) 2000-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 |
|
17 #ifndef MIGNORER_H |
|
18 #define MIGNORER_H |
|
19 |
|
20 #include <btsdp.h> |
|
21 |
|
22 class MIgnorer : public MSdpElementBuilder |
|
23 { |
|
24 public: |
|
25 virtual MSdpElementBuilder* BuildUnknownL(TUint8 aType, TUint8 aSizeDesc, const TDesC8& aData); |
|
26 virtual MSdpElementBuilder* BuildNilL(); |
|
27 virtual MSdpElementBuilder* BuildUintL(const TDesC8& aUint); |
|
28 virtual MSdpElementBuilder* BuildIntL(const TDesC8& aInt); |
|
29 virtual MSdpElementBuilder* BuildUUIDL(const TUUID& aUUID); |
|
30 virtual MSdpElementBuilder* BuildBooleanL(TBool aBool); |
|
31 virtual MSdpElementBuilder* BuildStringL(const TDesC8& aString); |
|
32 virtual MSdpElementBuilder* BuildDESL(); // Must not return NULL |
|
33 virtual MSdpElementBuilder* BuildDEAL(); // ditto |
|
34 virtual MSdpElementBuilder* StartListL(); // ditto |
|
35 virtual MSdpElementBuilder* EndListL(); |
|
36 virtual MSdpElementBuilder* BuildURLL(const TDesC8& aURL); |
|
37 // virtual MSdpElementBuilder* BuildEncodedL(const TDesC8& aString); |
|
38 }; |
|
39 |
|
40 #endif |