📄 lpdentityref.h
字号:
// Copyright (c) 1994 James Clark// See the file COPYING for copying permission.#ifndef LpdEntityRef_INCLUDED#define LpdEntityRef_INCLUDED 1#include "Entity.h"#include "Boolean.h"#include "Ptr.h"// Information about a reference to an entity that// used a definition in an LPD.#ifdef SP_NAMESPACEnamespace SP_NAMESPACE {#endifstruct LpdEntityRef { ConstPtr<Entity> entity; PackedBoolean lookedAtDefault; PackedBoolean foundInPass1Dtd; static inline const LpdEntityRef &key(const LpdEntityRef &r) { return r; } static inline unsigned long hash(const LpdEntityRef &r) { return Hash::hash(r.entity->name()); }};inlineBoolean operator==(const LpdEntityRef &r1, const LpdEntityRef &r2){ return (r1.entity == r2.entity && r1.foundInPass1Dtd == r2.foundInPass1Dtd && r1.lookedAtDefault == r2.lookedAtDefault);}inlineBoolean operator!=(const LpdEntityRef &r1, const LpdEntityRef &r2){ return !(r1 == r2);}#ifdef SP_NAMESPACE}#endif#endif /* not LpdEntityRef_INCLUDED */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -