#include "parser.h"
+#include "stg/common.h"
+
#include <string>
class ADMIN;
FACTORY(const USERS & users) : m_users(users) {}
virtual BASE_PARSER * create(const ADMIN & admin) { return new AUTH_BY(admin, m_users); }
static void Register(REGISTRY & registry, const USERS & users)
- { registry[tag] = new FACTORY(users); }
+ { registry[ToLower(tag)] = new FACTORY(users); }
private:
const USERS & m_users;
};