SubWindowKey
SubWindowKey::~SubWindowKey()
ObjectSubWindowKey::Equals(const SubWindowKey* other) const
SubWindow::AddToSubWindowManager(SubWindowKey* key)
class SubWindowKey {
virtual ~SubWindowKey();
virtual bool Equals(const SubWindowKey* other) const = 0;
class ObjectSubWindowKey : public SubWindowKey {
virtual bool Equals(const SubWindowKey* other) const;
inline SubWindowKey* GetSubWindowKey() const;
bool AddToSubWindowManager(SubWindowKey* key);
SubWindowKey* fSubWindowKey;
SubWindowKey*
SubWindowManager::LookupSubWindow(const SubWindowKey& key) const
SubWindow* LookupSubWindow(const SubWindowKey& key) const;
typedef SubWindowKey KeyType;
size_t HashKey(const SubWindowKey& key) const
bool Compare(const SubWindowKey& key,