File diff r10984:92bd8312420b → r10985:c2507f106432
src/driver.h
Show inline comments
 
@@ -6,6 +6,7 @@
 
#define DRIVER_H
 

	
 
#include "core/enum_type.hpp"
 
#include "core/string_compare_type.hpp"
 
#include "string_func.h"
 
#include <map>
 

	
 
@@ -39,13 +40,6 @@ private:
 
	const char *name;
 
	int priority;
 

	
 
	struct StringCompare {
 
		bool operator () (const char *a, const char *b) const
 
		{
 
			return strcmp(a, b) < 0;
 
		}
 
	};
 

	
 
	typedef std::map<const char *, DriverFactoryBase *, StringCompare> Drivers;
 

	
 
	static Drivers &GetDrivers()