mpviewplugins/mpplaybackviewplugin/tsrc/unittest_mpplaybackwidget/stub/src/mplightmonitor.cpp
changeset 61 3cd404d31176
equal deleted inserted replaced
58:ed94e1e8390e 61:3cd404d31176
       
     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: Light monitor for Playback.
       
    15 *
       
    16 */
       
    17 
       
    18 #include "mplightmonitor.h"
       
    19 
       
    20 
       
    21 /*!
       
    22     \class MpLightMonitor
       
    23     \brief Wrapper for light monitor.
       
    24 
       
    25     MpLightMonitor provides Qt style interface to the Light Observer.
       
    26     It's implementation is hidden using private class data pattern.
       
    27 */
       
    28 
       
    29 /*!
       
    30     \fn void lcdLightStatus( bool lightOn );
       
    31 
       
    32     This signal is emitted when the device light status changes.
       
    33  */
       
    34 
       
    35 /*!
       
    36  \internal
       
    37  */
       
    38 MpLightMonitor::MpLightMonitor( QObject *parent )
       
    39     : QObject( parent )
       
    40 {
       
    41 
       
    42 }
       
    43 
       
    44 /*!
       
    45  \internal
       
    46  */
       
    47 MpLightMonitor::~MpLightMonitor()
       
    48 {
       
    49 }
       
    50