inc/profilesobserver.h
changeset 0 dc71378f4890
equal deleted inserted replaced
-1:000000000000 0:dc71378f4890
       
     1 /*
       
     2 * Copyright (c) 2010 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: Profiles model for profiles widget
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef PROFILESOBSERVER_H
       
    19 #define PROFILESOBSERVER_H
       
    20 
       
    21 // System includes
       
    22 #include <QObject>
       
    23 
       
    24 // Forward declarations
       
    25 class ProfilesObserverPrivate;
       
    26 
       
    27 // Class declaration
       
    28 class ProfilesObserver : public QObject
       
    29 {
       
    30 public:
       
    31 	ProfilesObserver(QObject *parent = 0);
       
    32     ~ProfilesObserver();
       
    33     
       
    34 private:
       
    35     Q_DISABLE_COPY(ProfilesObserver)
       
    36     
       
    37 private:
       
    38 	ProfilesObserverPrivate *dptr;
       
    39 };
       
    40 
       
    41 #endif  //PROFILESOBSERVER_H