wvuing/wvuiave/AppSrc/MCAInviteConflictResolver.h
changeset 0 094583676ce7
equal deleted inserted replaced
-1:000000000000 0:094583676ce7
       
     1 /*
       
     2 * Copyright (c) 2002-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:  Interface for resolving invite conflicts
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef MCAINVITECONFLICTRESOLVER_H
       
    19 #define MCAINVITECONFLICTRESOLVER_H
       
    20 
       
    21 #include <badesca.h> // CDesCArray
       
    22 
       
    23 // CLASS DECLARATION
       
    24 
       
    25 /**
       
    26 *  Interface for text viewer
       
    27 *
       
    28 *  @lib chat.app
       
    29 *  @since Series 60 3.0
       
    30 */
       
    31 class MCAInviteConflictResolver
       
    32     {
       
    33     public: // New functions
       
    34 
       
    35         /**
       
    36          * Resolves invite conflicts with banned users
       
    37          * @param aGroup Reference of GroupId
       
    38          * @param aArray of invited wvids
       
    39          */
       
    40         virtual void ResolveInviteConflictL( const TDesC& aGroup,
       
    41                                              CDesCArray& aArray ) = 0;
       
    42 
       
    43     protected:
       
    44 
       
    45         /**
       
    46          * Destructor.
       
    47          */
       
    48         virtual ~MCAInviteConflictResolver() {};
       
    49 
       
    50     };
       
    51 
       
    52 #endif      // MCAINVITECONFLICTRESOLVER_H
       
    53 
       
    54 // End of File