tvout/tvoutengine/inc/glxactivecallback.h
author hgs
Fri, 23 Jul 2010 20:41:04 +0530
changeset 52 a3a4c0de738e
parent 26 c499df2dbb33
permissions -rw-r--r--
201029

/*
* Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). 
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:    
*
*/


#ifndef CGLXACTIVE_CALLBACK_H
#define CGLXACTIVE_CALLBACK_H

// INCLUDES
#include <aknapp.h>

// CLASS DECLARATION

class CGlxActiveCallBack : public CActive
    { 
    public:
        CGlxActiveCallBack( TCallBack aCallBack, TInt aPriority): CActive(aPriority), 
                                                                  iCallBack(aCallBack) {};
        CGlxActiveCallBack();
    	
    public: /// Functions CActive
		void SetActive() { CActive::SetActive();}; 
		void RunL() { iCallBack.CallBack();};
 		void DoCancel() {};
 		
   	private: /// Data
		TCallBack iCallBack;
    };

#endif // CGLXACTIVE_CALLBACK_H

// End of File