dbgsrv/coredumpserver/ui/coredumpui/inc/coredumpuinotifier.h
changeset 0 c6b0df440bee
equal deleted inserted replaced
-1:000000000000 0:c6b0df440bee
       
     1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // Core dump progress observer active object class definition.
       
    15 //
       
    16 
       
    17 
       
    18 
       
    19 /**
       
    20  @file
       
    21  @internalTechnology
       
    22  @released
       
    23 */
       
    24 
       
    25 #ifndef CORE_DUMP_UI_NOTIFIER_H
       
    26 #define CORE_DUMP_UI_NOTIFIER_H
       
    27 
       
    28 #include "coredumpui.h"
       
    29 
       
    30 class CCrashNotifier : public CActive
       
    31 {
       
    32 
       
    33 public:
       
    34     static CCrashNotifier *NewL(CResourceView &aResourceView);
       
    35     ~CCrashNotifier();
       
    36 
       
    37 protected:
       
    38     CCrashNotifier(CResourceView &aResourceView);
       
    39     void ConstructL();
       
    40     void RunL();
       
    41     void DoCancel();
       
    42 
       
    43 private:
       
    44     RProperty iProperty; //property that stores crash progress
       
    45     CResourceView &iResourceView; //ui view to be notified about the progress
       
    46 };
       
    47 #endif //CORE_DUMP_UI_NOTIFIER_H