/* * Copyright 2013 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SkTMultiMap_DEFINED #define SkTMultiMap_DEFINED #include "src/core/SkTDynamicHash.h" /** A set that contains pointers to instances of T. Instances can be looked up with key Key. * Multiple (possibly same) values can have the same key. */ template <typename T, typename Key, typename HashTraits=T> class SkTMultiMap { … }; #endif