javamanager/javacaptain/extensionplugins/settingslistener/inc/settingslistenerinterface.h
branchRCL_3
changeset 60 6c158198356e
equal deleted inserted replaced
59:e5618cc85d74 60:6c158198356e
       
     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:  Definition of interface, which is used for listening changes in
       
    15 *                     in system settings.
       
    16 *
       
    17 */
       
    18 
       
    19 #ifndef SETTINGSLISTENERINTERFACE_H
       
    20 #define SETTINGSLISTENERINTERFACE_H
       
    21 
       
    22 namespace java
       
    23 {
       
    24 
       
    25 namespace captain
       
    26 {
       
    27 
       
    28 class SettingsListenerInterface
       
    29 {
       
    30 public:
       
    31     virtual ~SettingsListenerInterface() {}
       
    32 
       
    33     virtual void startListening() = 0;
       
    34     virtual void stopListening() = 0;
       
    35 
       
    36 };
       
    37 
       
    38 } // namespace captain
       
    39 } // namespace java
       
    40 
       
    41 #endif // SETTINGSLISTENERINTERFACE_H
       
    42