mmserv/tms/inc/tmscallimpl.h
changeset 0 71ca22bcf22a
child 10 3d8c721bf319
equal deleted inserted replaced
-1:000000000000 0:71ca22bcf22a
       
     1 /*
       
     2  * Copyright (c) 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: Telephony Multimedia Service
       
    15  *
       
    16  */
       
    17 
       
    18 #ifndef TMS_CALL_IMPL_H
       
    19 #define TMS_CALL_IMPL_H
       
    20 
       
    21 #include <glib.h>
       
    22 #include <tmscall.h>
       
    23 
       
    24 namespace TMS {
       
    25 
       
    26 // TMSCallImpl class
       
    27 class TMSCallImpl : public TMSCall
       
    28     {
       
    29 public:
       
    30     ~TMSCallImpl();
       
    31     // We don't have to export this if factory impl is part of tmsimpl.lib
       
    32     // TO DO stop exporting this function
       
    33     IMPORT_C static gint Create(TMSCallType ctype, TMSCall*& tmscall,
       
    34             guint ctxid);
       
    35 
       
    36 private:
       
    37     TMSCallImpl();
       
    38     gint PostConstruct(TMSCallType ctype, guint ctxid);
       
    39     };
       
    40 
       
    41 } //namespace TMS
       
    42 
       
    43 #endif // TMS_CALL_IMPL_H
       
    44 
       
    45 // End of file