imservices/imfeatureplugin/srcimoperations/imoperationdefs.h
changeset 0 e6b17d312c8b
equal deleted inserted replaced
-1:000000000000 0:e6b17d312c8b
       
     1 /*
       
     2 * Copyright (c) 2007 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:  XIMP framework im operation definitions.
       
    15  *
       
    16 */
       
    17 
       
    18 #ifndef IMOPERATIONDEFS_H
       
    19 #define IMOPERATIONDEFS_H
       
    20 
       
    21 #include <e32std.h>
       
    22 
       
    23 // TODO: use ranges for operations types, that will make sure that
       
    24 // the core, Presence and IM operations won't overlap
       
    25 
       
    26 /**
       
    27  * PSC operations.
       
    28  */
       
    29 namespace NImOps
       
    30     {
       
    31     enum TImOpTypes
       
    32         {
       
    33         // -----------------------------------------------
       
    34         // From client
       
    35         //
       
    36         ESendImMessage = 200,                          // 200
       
    37         ESendImMessageToGroup,                         // 201
       
    38         EHandleSentMessage,       
       
    39         EHandleReceiveMessage,      
       
    40         ESynthesiseImSubscription = 280,
       
    41         EIMCleaner = 290            
       
    42         };
       
    43     }
       
    44 
       
    45 #endif  //IMOPERATIONDEFS_H
       
    46 
       
    47 
       
    48 
       
    49 
       
    50