javamanager/javacaptain/extensionplugins/settingslistener/inc/settingslistenerinterface.h
changeset 49 35baca0e7a2e
child 50 023eef975703
equal deleted inserted replaced
35:85266cc22c7f 49:35baca0e7a2e
       
     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:  ExtensionPluginInterface
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef SETTINGSLISTENERINTERFACE_H
       
    19 #define SETTINGSLISTENERINTERFACE_H
       
    20 
       
    21 namespace java
       
    22 {
       
    23 
       
    24 namespace captain
       
    25 {
       
    26 
       
    27 class CoreInterface;
       
    28 
       
    29 class SettingsListenerInterface
       
    30 {
       
    31 public:
       
    32     virtual ~SettingsListenerInterface() {}
       
    33 
       
    34     virtual void StartListening() = 0;
       
    35     virtual void StopListening() = 0;
       
    36 
       
    37 };
       
    38 
       
    39 } // namespace captain
       
    40 } // namespace java
       
    41 
       
    42 #endif // SETTINGSLISTENERINTERFACE_H
       
    43