blob: 8e79a5b69b65e7edd330035a929d3461ad5a3882 [file] [log] [blame]
#ifndef _UTIL_H_
#define _UTIL_H_
namespace vmkit {
class Util {
public:
struct char_less_t {
bool operator()(const char* s1, const char* s2) const;
};
struct char_less_t_dbg {
bool operator()(const char* s1, const char* s2) const;
};
static struct char_less_t char_less;
static struct char_less_t_dbg char_less_dbg;
};
};
#endif