/* * Copyright (c) 2018-2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include class WindowIdentifier { public: WindowIdentifier() = default; WindowIdentifier(int client_id, int window_id) : m_client_id(client_id) , m_window_id(window_id) { } int client_id() const { return m_client_id; } int window_id() const { return m_window_id; } bool operator==(const WindowIdentifier& other) const { return m_client_id == other.m_client_id && m_window_id == other.m_window_id; } bool is_valid() const { return m_client_id != -1 && m_window_id != -1; } private: int m_client_id { -1 }; int m_window_id { -1 }; }; namespace AK { template<> struct Traits : public GenericTraits { static unsigned hash(const WindowIdentifier& w) { return pair_int_hash(w.client_id(), w.window_id()); } }; }