10 lines
		
	
	
		
			345 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			345 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef HANDLERFACTORY_H
 | |
| #define HANDLERFACTORY_H
 | |
| #include <memory>
 | |
| #include "handler.h"
 | |
| #include "../template.h"
 | |
| 
 | |
| std::unique_ptr<Handler> createHandler(const std::string &action, HandlerConfig &handlerConfig, Template &templ,
 | |
| 									   Database &db, Session &usersession, UrlProvider &urlprovider, ICache &cache);
 | |
| #endif // HANDLERFACTORY_H
 |