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 // Definitions of types used to simplify data transfer between |
|
15 // client & server for X3P. |
|
16 // |
|
17 // |
|
18 |
|
19 /** |
|
20 @file |
|
21 @internalTechnology |
|
22 @released |
|
23 */ |
|
24 #ifndef LBSX3PDATA_H__ |
|
25 #define LBSX3PDATA_H__ |
|
26 |
|
27 #include <lbs/lbsx3p.h> |
|
28 |
|
29 |
|
30 class TTransmitPositionParams |
|
31 { |
|
32 public: |
|
33 TUint iPriority; /* Priority of this request */ |
|
34 TUint32 iPositionInfoClassType; /* Class type of the position info to write back to |
|
35 @see _TPositionInfoClassType */ |
|
36 TUint iPositionInfoClassSize; /* Size of the position info to write back to */ |
|
37 TBuf<64> iDestinationId; /* Buffer to store the destinationId */ |
|
38 }; |
|
39 |
|
40 |
|
41 #endif // LBSX3PDATA_H__ |