btobexprofiles/obexsendservices/obexhighway/inc/btsendserviceprovider.h
branchRCL_3
changeset 56 9386f31cc85b
parent 55 613943a21004
child 61 269724087bed
equal deleted inserted replaced
55:613943a21004 56:9386f31cc85b
     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:
       
    15  * class to manage differnt messaging views.
       
    16  *
       
    17  */
       
    18 
       
    19 #ifndef BTSENDSERVICEPROVIDER_H
       
    20 #define BTSENDSERVICEPROVIDER_H
       
    21 
       
    22 #include <e32base.h>
       
    23 #include <qlist.h>
       
    24 #include <qvariant.h>
       
    25 
       
    26 class CBTServiceAPI;
       
    27 class CBTSSSendListHandler;
       
    28 
       
    29 
       
    30 class CBtSendServiceProvider: public CBase
       
    31     {
       
    32 public:
       
    33     /**
       
    34      * constructor
       
    35      */
       
    36     static CBtSendServiceProvider* NewL();
       
    37     
       
    38     /**
       
    39      * Destructor.
       
    40      */
       
    41     ~CBtSendServiceProvider();
       
    42     
       
    43     
       
    44     int send(const QList<QVariant> &arguments);
       
    45 private:
       
    46     CBtSendServiceProvider();    
       
    47     void ConstructL();
       
    48     
       
    49 public:
       
    50     CBTSSSendListHandler*    iConverter;
       
    51     CBTServiceAPI*  iBTSendingService;
       
    52      };
       
    53 
       
    54 #endif /* BTSENDSERVICEPROVIDER_H */