phoneengine/PhoneCntFinder/ContactService/inc/tphcntnullserviceresult.h
changeset 0 5f000ab63145
equal deleted inserted replaced
-1:000000000000 0:5f000ab63145
       
     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:  Empty service result.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef TPHCNTNULLSERVICERESULT_H
       
    20 #define TPHCNTNULLSERVICERESULT_H
       
    21 
       
    22 #include <e32std.h>
       
    23 
       
    24 #include "mphcntserviceresult.h"
       
    25 
       
    26 /**
       
    27  *  Service result, which does not parse the result.
       
    28  *
       
    29  *  @lib PhoneCntFinder.lib
       
    30  *  @since S60 v3.2
       
    31  */
       
    32 NONSHARABLE_CLASS( TPhCntNullServiceResult ) : public MPhCntServiceResult
       
    33     {
       
    34 public:
       
    35 
       
    36     TPhCntNullServiceResult();
       
    37 
       
    38 // from base class MPhCntServiceResult
       
    39 
       
    40     /**
       
    41      * From MPhCntServiceResult
       
    42      *
       
    43      * @since S60 v3.2
       
    44      * @see MPhCntServiceResult
       
    45      */
       
    46     void ParseResult( CAiwGenericParamList& aResult );
       
    47 
       
    48     };
       
    49 
       
    50 #endif // TPHCNTNULLSERVICERESULT_H
       
    51