photosgallery/viewframework/uiutilities/inc/mglxanimationobserver.h
changeset 0 4e91876724a2
equal deleted inserted replaced
-1:000000000000 0:4e91876724a2
       
     1 /*
       
     2 * Copyright (c) 2008-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:    Observer interface for animations
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 /**
       
    22  * @internal reviewed 12/07/2007 by Michael Yip
       
    23  */
       
    24 
       
    25 #ifndef M_GLXANIMATIONOBSERVER_H
       
    26 #define M_GLXANIMATIONOBSERVER_H
       
    27 
       
    28 class MGlxAnimation;
       
    29 
       
    30 /**
       
    31  * Animation observer interface
       
    32  */
       
    33 class MGlxAnimationObserver
       
    34 	{
       
    35 public:
       
    36     /**
       
    37      * Callback received when animation is complete
       
    38      * @param aAnimation The completed animation - may be deleted within callback
       
    39      */
       
    40 	virtual void AnimationComplete(MGlxAnimation* aAnimation) = 0;
       
    41 	};
       
    42 
       
    43 #endif //  M_GLXANIMATIONOBSERVER_H