qtinternetradio/irqsystemeventhandler/inc/irdiskspaceobserverinterface.h
changeset 5 0930554dc389
parent 3 ee64f059b8e1
child 6 5d722176514a
child 8 3b03c28289e6
equal deleted inserted replaced
3:ee64f059b8e1 5:0930554dc389
     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:  Disk space observer, information about low disk space.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef IRDISKSPACEOBSERVERINTERFACE_H_
       
    20 #define IRDISKSPACEOBSERVERINTERFACE_H_
       
    21 
       
    22 #include <QtGlobal>
       
    23 
       
    24 /**
       
    25  *  Observer of low disk space 
       
    26  *
       
    27  *  Observer which is interested low disk space situations. 
       
    28  */
       
    29 class MIRDiskSpaceObserverInterface
       
    30 {
       
    31 public:
       
    32 
       
    33     /**
       
    34      * notifyLowDiskSpace Called when the observed disk's free disk space is
       
    35      * less than the critical level.
       
    36      */
       
    37     virtual void notifyLowDiskSpace(qint64 aCriticalLevel) = 0;
       
    38 };
       
    39 
       
    40 #endif // IRDiskSpaceObserverInterface_H_