(svn r13619) -Codechange: use 'const char *' instead of std::string for blitter and driver names

Removes indirect dependency on <string> for 20 files, reduces binary size by 16kB
This commit is contained in:
smatz
2008-06-24 09:15:45 +00:00
parent 40d5242f91
commit 96d880ea9e
3 changed files with 33 additions and 10 deletions

View File

@@ -8,7 +8,6 @@
#include "debug.h"
#include "core/enum_type.hpp"
#include "string_func.h"
#include <string>
#include <map>
bool GetDriverParamBool(const char * const *parm, const char *name);
@@ -37,9 +36,17 @@ DECLARE_POSTFIX_INCREMENT(Driver::Type);
class DriverFactoryBase {
private:
Driver::Type type;
char *name;
const char *name;
int priority;
typedef std::map<std::string, DriverFactoryBase *> Drivers;
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()
{