deviceupdatesui/cpqtsp/inc/CpQtSpMainWindow.h
changeset 30 d3981f4fe6a4
parent 27 516a867811c3
child 31 4b5fb8110426
child 41 c742e1129640
equal deleted inserted replaced
27:516a867811c3 30:d3981f4fe6a4
     1 /*
       
     2 * Copyright (c) 2002 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 #ifndef CPQTSPMAINWINDOW_H
       
    20 #define CPQTSPMAINWINDOW_H
       
    21 
       
    22 #include <hbmainwindow.h>
       
    23 
       
    24 class CpQtSpView;
       
    25 class CpQtSp;
       
    26 
       
    27 class CpQtSpMainWindow : public HbMainWindow
       
    28 {
       
    29     Q_OBJECT
       
    30     
       
    31 public:
       
    32      CpQtSpMainWindow(QWidget *parent=0);
       
    33      ~CpQtSpMainWindow();   
       
    34 public slots:
       
    35     void showView();
       
    36     
       
    37 private:
       
    38     CpQtSp* iServiceProvider;
       
    39     CpQtSpView* iView;  
       
    40 };
       
    41 
       
    42 #endif // CPQTSPMAINWINDOW_H