mirror of
				https://github.com/Icinga/icinga2.git
				synced 2025-11-03 21:25:56 +01:00 
			
		
		
		
	These parameters are no longer needed since they were only used by EventsHandler which was refactored in an earlier commit.
		
			
				
	
	
		
			27 lines
		
	
	
		
			467 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			467 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
 | 
						|
 | 
						|
#ifndef CONFIGFILESHANDLER_H
 | 
						|
#define CONFIGFILESHANDLER_H
 | 
						|
 | 
						|
#include "remote/httphandler.hpp"
 | 
						|
 | 
						|
namespace icinga
 | 
						|
{
 | 
						|
 | 
						|
class ConfigFilesHandler final : public HttpHandler
 | 
						|
{
 | 
						|
public:
 | 
						|
	DECLARE_PTR_TYPEDEFS(ConfigFilesHandler);
 | 
						|
 | 
						|
	bool HandleRequest(
 | 
						|
		const WaitGroup::Ptr& waitGroup,
 | 
						|
		const HttpRequest& request,
 | 
						|
		HttpResponse& response,
 | 
						|
		boost::asio::yield_context& yc
 | 
						|
	) override;
 | 
						|
};
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
#endif /* CONFIGFILESHANDLER_H */
 |