fotaapplication/fotaserver/inc/fsview.h
changeset 44 39aa16f3fdc2
child 66 08c8318ec9cb
equal deleted inserted replaced
43:c8e5c3d81b42 44:39aa16f3fdc2
       
     1 /*
       
     2  * Copyright (c) 2000 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: Implementation of applicationmanagement components
       
    15  *
       
    16  */
       
    17 
       
    18 #ifndef FSVIEW_H_
       
    19 #define FSVIEW_H_
       
    20 
       
    21 #include <hbview.h>
       
    22 #include <QObject>
       
    23 
       
    24 class CFotaServer;
       
    25 
       
    26 class FSView : public HbView
       
    27     {
       
    28     Q_OBJECT
       
    29 
       
    30 public:
       
    31     FSView();
       
    32     ~FSView();
       
    33 
       
    34     void SetServer(CFotaServer * aServer);
       
    35     
       
    36     //Handles the incoming events
       
    37     bool eventFilter(QObject *object, QEvent *event);
       
    38 
       
    39 private:
       
    40     CFotaServer *iServer;
       
    41     };
       
    42 #endif /* FSVIEW_H_ */