applicationmanagement/server/inc/amview.h
changeset 42 aa33c2cb9a50
child 62 03849bd79877
equal deleted inserted replaced
41:c742e1129640 42:aa33c2cb9a50
       
     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 AMVIEW_H_
       
    19 #define AMVIEW_H_
       
    20 
       
    21 #include <hbview.h>
       
    22 #include <QObject>
       
    23 #include "ApplicationManagementUtility.h"
       
    24 
       
    25 class AMView : public HbView
       
    26     {
       
    27     Q_OBJECT
       
    28 
       
    29 public:
       
    30     AMView();
       
    31     ~AMView();
       
    32     
       
    33     //Handles the incoming events
       
    34     bool eventFilter(QObject *object, QEvent *event);
       
    35     };
       
    36 #endif /* AMVIEW_H_ */