controlpanelplugins/themeplugin/src/cpthemeclientsymbian_p.h
changeset 21 2883a5458389
parent 20 22d3abee08da
child 22 a5692c68d772
equal deleted inserted replaced
20:22d3abee08da 21:2883a5458389
     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  *   
       
    16  */
       
    17 
       
    18 #ifndef CPTHEMECLIENTSYMBIAN_P_H
       
    19 #define CPTHEMECLIENTSYMBIAN_P_H
       
    20 
       
    21 #include <QString>
       
    22 #if !defined(__E32BASE_H__)
       
    23 #include <e32base.h>
       
    24 #endif
       
    25 
       
    26 class CpThemeClientPrivate
       
    27 {
       
    28 public:
       
    29     CpThemeClientPrivate();
       
    30 
       
    31     bool connectToServer();
       
    32     
       
    33     bool changeTheme(const QString& newtheme);
       
    34     
       
    35     bool isConnected();
       
    36 
       
    37     ~CpThemeClientPrivate();
       
    38 };
       
    39 
       
    40 #endif /* CPTHEMECLIENTSYMBIAN_P_H */