mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 04:10:49 -05:00
17 lines
350 B
Text
17 lines
350 B
Text
|
|
namespace std {
|
||
|
|
class type_info {
|
||
|
|
public:
|
||
|
|
virtual ~type_info();
|
||
|
|
const char* name() const { return __name; }
|
||
|
|
bool operator==(const type_info& __arg) const {
|
||
|
|
return __name == __arg.__name;
|
||
|
|
}
|
||
|
|
|
||
|
|
bool operator!=(const type_info& __arg) const {
|
||
|
|
return !operator==(__arg);
|
||
|
|
}
|
||
|
|
protected:
|
||
|
|
const char *__name;
|
||
|
|
};
|
||
|
|
}
|