locationsystemui/locationsysui/possettings/poslocationservices/inc/poslocationservicescommon.h
branchRCL_3
changeset 44 2b4ea9893b66
equal deleted inserted replaced
42:02ba3f1733c6 44:2b4ea9893b66
       
     1 /*
       
     2 * Copyright (c) 2010 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: This header defines set of data structures used in
       
    15 *              locaion services plugin.  
       
    16 *
       
    17 */
       
    18 
       
    19 #ifndef POSLOCATIONSERVICESCOMMON_H
       
    20 #define POSLOCATIONSERVICESCOMMON_H
       
    21 
       
    22 #include <QString>
       
    23 #include <QDateTime>
       
    24 
       
    25 struct PosLocationServiceInfo
       
    26     {
       
    27     /**
       
    28      * Location service Id.
       
    29      */
       
    30     int mServiceId;
       
    31     /**
       
    32      * Location service name.
       
    33      */
       
    34     QString mServiceName;
       
    35     
       
    36     /**
       
    37      * Update interval.
       
    38      */
       
    39     int mUpdateInterval;
       
    40     
       
    41     /**
       
    42      * Date and time on which service ends.
       
    43      */
       
    44     QDateTime mEndDateTime;
       
    45     };
       
    46 
       
    47 #endif //POSLOCATIONSERVICESCOMMON_H