phoneengine/phoneservices/inc/phoneservices.h
changeset 21 92ab7f8d0eab
child 30 ebdbd102c78a
equal deleted inserted replaced
4:c84cf270c54f 21:92ab7f8d0eab
       
     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:  Phone Services manages all Phone Engine's Qt Highway services.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef PHONESERVICES_H
       
    19 #define PHONESERVICES_H
       
    20 
       
    21 #include <QObject>
       
    22 #include "mpecallcontrolif.h"
       
    23 #include "mpecallsettersif.h"
       
    24 
       
    25 class DialService;
       
    26 class DTMFService;
       
    27 
       
    28 #ifdef BUILD_PHONESERVICES
       
    29 #define PHONESERVICES_EXPORT Q_DECL_EXPORT
       
    30 #else
       
    31 #define PHONESERVICES_EXPORT Q_DECL_IMPORT
       
    32 #endif
       
    33 
       
    34 class PHONESERVICES_EXPORT PhoneServices : public QObject
       
    35 {
       
    36     Q_OBJECT
       
    37 public:
       
    38     PhoneServices(MPECallControlIF &call, MPECallSettersIF &parameters, QObject *parent = 0);
       
    39     ~PhoneServices();    
       
    40     
       
    41 private:
       
    42     DialService *dialService;
       
    43     DTMFService *dtmfService;
       
    44 
       
    45 };
       
    46 
       
    47 #endif // PHONESERVICES_H