locationsystemui/locationsysui/posindicator/posindhelperclientlib/src/posindicatorinfo.cpp
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:  Positioning Indicators Info - QT Wrapper
       
    15 *
       
    16 */
       
    17 
       
    18 #include "posindicatorinfo.h"
       
    19 #include "posindicatorinfo_p.h"
       
    20 
       
    21 // ---------------------------------------------------------------------------
       
    22 // PositionIndicatorInfo::PositionIndicatorInfo()
       
    23 // ---------------------------------------------------------------------------
       
    24  PosIndicatorInfo::PosIndicatorInfo()
       
    25     {
       
    26     FUNC("+ PosIndicatorInfo::PosIndicatorInfo");
       
    27     d_ptr = new PosIndicatorInfoPrivate(this);
       
    28     FUNC("- PosIndicatorInfo::PosIndicatorInfo");
       
    29     }
       
    30 
       
    31 // ---------------------------------------------------------------------------
       
    32 // PosIndicatorInfo::~PosIndicatorInfo()
       
    33 // ---------------------------------------------------------------------------
       
    34  PosIndicatorInfo::~PosIndicatorInfo()
       
    35     {
       
    36     FUNC("+ PosIndicatorInfo::~PosIndicatorInfo");
       
    37     delete d_ptr;
       
    38     d_ptr = NULL;
       
    39     FUNC("- PosIndicatorInfo::~PosIndicatorInfo");
       
    40     }
       
    41 
       
    42 // ---------------------------------------------------------------------------
       
    43 // PosIndicatorInfo::requestPosInfo()
       
    44 // ---------------------------------------------------------------------------
       
    45  void PosIndicatorInfo::requestPosInfo()
       
    46     {
       
    47     FUNC("+ PosIndicatorInfo::requestPosInfo");
       
    48     d_ptr->RequestPosInfo();
       
    49     FUNC("- PosIndicatorInfo::requestPosInfo");
       
    50     }
       
    51  
       
    52  // ---------------------------------------------------------------------------
       
    53  // PosIndicatorInfo::cancelPosInfo()
       
    54  // ---------------------------------------------------------------------------
       
    55   void PosIndicatorInfo::cancelPosInfo()
       
    56      {
       
    57      FUNC("+ PosIndicatorInfo::cancelPosInfo");
       
    58      d_ptr->CancelPosInfo();
       
    59      FUNC("- PosIndicatorInfo::cancelPosInfo");
       
    60      }
       
    61 
       
    62 // End of file