mirror of
				https://github.com/RaySollium99/picodrive.git
				synced 2025-10-28 05:48:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			745 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			745 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*******************************************************************
 | |
|  *
 | |
|  *	File:		PolledAS.h
 | |
|  *
 | |
|  *	Author:		Peter van Sebille (peter@yipton.net)
 | |
|  *
 | |
|  *	(c) Copyright 2001, Peter van Sebille
 | |
|  *	All Rights Reserved
 | |
|  *
 | |
|  *******************************************************************/
 | |
| 
 | |
| #ifndef __POLLED_AS_H
 | |
| #define __POLLED_AS_H
 | |
| 
 | |
| class CPrivatePolledActiveScheduler;
 | |
| 
 | |
| class CPolledActiveScheduler : public CBase
 | |
| {
 | |
| public:
 | |
| 	~CPolledActiveScheduler();
 | |
| 	static CPolledActiveScheduler* NewL();
 | |
| 	//static CPolledActiveScheduler* Instance();
 | |
| 	void Schedule();
 | |
| protected:
 | |
| 	CPolledActiveScheduler(){};
 | |
| 	void ConstructL();
 | |
| 	CPrivatePolledActiveScheduler*	iPrivatePolledActiveScheduler;
 | |
| };
 | |
| 
 | |
| 
 | |
| #endif			/* __POLLED_AS_H */
 | |
| 
 | 
