phonebookengines/contactsmodel/cntsrv/inc/CCntMsgHandlerFptr.h
changeset 0 e686773b3f54
child 24 0ba2181d7c28
equal deleted inserted replaced
-1:000000000000 0:e686773b3f54
       
     1 /**
       
     2 * Copyright (c) 2007-2009 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:
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 /**
       
    21  @file
       
    22  @internalComponent
       
    23 */
       
    24 
       
    25 #ifndef CNTMSGHANDLERFPTR_H
       
    26 #define CNTMSGHANDLERFPTR_H
       
    27 
       
    28 class CCntMsgHandler;
       
    29 class CCntItemMsgHandler;
       
    30 class CCntEventMsgHandler;
       
    31 class CCntTransactionMsgHandler;
       
    32 class CCntFileManagerMsgHandler;
       
    33 class CCntPropertiesMsgHandler;
       
    34 class CCntViewMsgHandler;
       
    35 
       
    36 typedef void (CCntMsgHandler::*MsgHandlerFptr)(const RMessage2&);
       
    37 
       
    38 typedef void (CCntItemMsgHandler::*ItemMsgHandlerFptr)(const RMessage2&);
       
    39 typedef void (CCntEventMsgHandler::*EventMsgHandlerFptr)(const RMessage2&);
       
    40 typedef void (CCntTransactionMsgHandler::*TransactionMsgHandlerFptr)(const RMessage2&);
       
    41 typedef void (CCntFileManagerMsgHandler::*FileManagerMsgHandlerFptr)(const RMessage2&);
       
    42 typedef void (CCntPropertiesMsgHandler::*PropertiesMsgHandlerFptr)(const RMessage2&);
       
    43 typedef void (CCntViewMsgHandler::*ViewMsgHandlerFptr)(const RMessage2&);
       
    44 
       
    45 
       
    46 
       
    47 #endif