wvuing/wvuiave/AppSrc/mcaserverchangenotify.h
changeset 0 094583676ce7
equal deleted inserted replaced
-1:000000000000 0:094583676ce7
       
     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:  This interface describes structure of server change notify services
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef MCASERVERCHANGENOTIFY_H
       
    21 #define MCASERVERCHANGENOTIFY_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32base.h>
       
    25 
       
    26 // CLASS DECLARATION
       
    27 
       
    28 /**
       
    29 *  An interface for listening server changes
       
    30 *
       
    31 *  @since Series 60 3.2
       
    32 */
       
    33 class MCAServerChangeNotify
       
    34     {
       
    35     public:
       
    36         enum TServerNotify
       
    37             {
       
    38             ENoServer = 0,
       
    39             EOtherChange
       
    40             };
       
    41     public:
       
    42 
       
    43         virtual ~MCAServerChangeNotify() {};
       
    44 
       
    45     public: // New functions
       
    46 
       
    47         virtual void HandleServerChangeL( TServerNotify aKey ) = 0;
       
    48     };
       
    49 
       
    50 #endif      // MCASERVERCHANGENOTIFY_H   
       
    51 
       
    52 // End of File
       
    53