wvuing/wvuipresence/src/TDecodeAttrParams.h
changeset 0 094583676ce7
equal deleted inserted replaced
-1:000000000000 0:094583676ce7
       
     1 /*
       
     2 * Copyright (c) 2005 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:  Holder for attribute decoding.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef TDECODEATTRPARAMS_H
       
    20 #define TDECODEATTRPARAMS_H
       
    21 
       
    22 //  INCLUDES
       
    23 #include "SServerPrefers.h"
       
    24 #include <badesca.h>    // CDesCArray
       
    25 #include "TCARequestQueue.h"
       
    26 
       
    27 // FORWARD DECLARATIONS
       
    28 class MPEngPresenceAttrModel2;
       
    29 class MCAStoredContacts;
       
    30 class MCAWatcherObserver;
       
    31 class CCAState;
       
    32 
       
    33 // CLASS DECLARATION
       
    34 
       
    35 /**
       
    36  *  Data holder for presence attribute decoding
       
    37  *  @since 2.1
       
    38  */
       
    39 struct TDecodeAttrParams
       
    40     {
       
    41     RPointerArray< CCAState >* iPresenceStates;
       
    42     RPointerArray< MPEngPresenceAttrModel2 > iArray;
       
    43     MCAStoredContacts* iContactStorage;
       
    44     MCAWatcherObserver* iWatcherObserver;
       
    45     CDesCArray* iStateOnline;
       
    46     CDesCArray* iStateOffline;
       
    47     CDesCArray* iStateUnknown;
       
    48     TInt iEntryIndex;
       
    49     SServerPrefers iServerPrefers;
       
    50     TCARequestQueue::TWaitCategory iWait;
       
    51     };
       
    52 
       
    53 #endif      // TDECODEATTRPARAMS_H
       
    54 
       
    55 // End of File
       
    56