src/silentmodel_p_win.cpp
changeset 0 6be25656cbbb
equal deleted inserted replaced
-1:000000000000 0:6be25656cbbb
       
     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: Silent widget model
       
    15 *
       
    16 */
       
    17 
       
    18 // User includes
       
    19 #include "silentmodel_p.h"
       
    20 
       
    21 /*!
       
    22     \class SilentModelPrivate
       
    23     \Silent widget model class
       
    24 
       
    25     This class is used to create silent widget model
       
    26 */
       
    27 
       
    28 // ======== MEMBER FUNCTIONS ========
       
    29 
       
    30 /*!
       
    31     NewL
       
    32 */
       
    33 SilentModelPrivate *SilentModelPrivate::NewL()
       
    34 {
       
    35 }
       
    36 
       
    37 /*!
       
    38     Constructor
       
    39 */
       
    40 SilentModelPrivate::SilentModelPrivate()
       
    41 {
       
    42 }
       
    43 
       
    44 /*!
       
    45     ConstructL
       
    46 */
       
    47 void SilentModelPrivate::ConstructL()
       
    48 {
       
    49 }
       
    50 
       
    51 /*!
       
    52     Destroyer
       
    53 */
       
    54 SilentModelPrivate::~SilentModelPrivate()
       
    55 {
       
    56 
       
    57 }
       
    58 
       
    59 /*
       
    60     Get silent status in master volume
       
    61  */
       
    62 bool SilentModelPrivate::silenceMode() const
       
    63 {
       
    64     return true;
       
    65 }
       
    66 
       
    67 /*
       
    68     Set silent status in master volume
       
    69  */
       
    70 void SilentModelPrivate::setSilenceMode(bool isSilence)
       
    71 {
       
    72 }