2021-03-04 21:52:17 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef XPCOM_DS_NSHASHTABLESFWD_H_
|
|
|
|
#define XPCOM_DS_NSHASHTABLESFWD_H_
|
|
|
|
|
|
|
|
#include "mozilla/Attributes.h"
|
|
|
|
|
|
|
|
struct PLDHashEntryHdr;
|
|
|
|
|
2021-03-04 21:52:19 +03:00
|
|
|
template <class T>
|
|
|
|
class MOZ_IS_REFPTR nsCOMPtr;
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
class MOZ_IS_REFPTR RefPtr;
|
|
|
|
|
2021-03-04 21:52:17 +03:00
|
|
|
template <class EntryType>
|
|
|
|
class MOZ_NEEDS_NO_VTABLE_TYPE nsTHashtable;
|
|
|
|
|
|
|
|
template <class DataType, class UserDataType>
|
|
|
|
class nsDefaultConverter;
|
|
|
|
|
|
|
|
template <class KeyClass, class DataType, class UserDataType,
|
|
|
|
class Converter = nsDefaultConverter<DataType, UserDataType>>
|
|
|
|
class nsBaseHashtable;
|
|
|
|
|
|
|
|
template <class KeyClass, class T>
|
|
|
|
class nsClassHashtable;
|
|
|
|
|
2021-03-04 21:52:18 +03:00
|
|
|
/**
|
|
|
|
* templated hashtable class maps keys to simple datatypes.
|
|
|
|
* See nsBaseHashtable for complete declaration
|
|
|
|
* @param KeyClass a wrapper-class for the hashtable key, see nsHashKeys.h
|
|
|
|
* for a complete specification.
|
|
|
|
* @param DataType the simple datatype being wrapped
|
|
|
|
* @see nsInterfaceHashtable, nsClassHashtable
|
|
|
|
*/
|
2021-03-04 21:52:17 +03:00
|
|
|
template <class KeyClass, class DataType>
|
2021-03-04 21:52:18 +03:00
|
|
|
using nsDataHashtable = nsBaseHashtable<KeyClass, DataType, DataType>;
|
2021-03-04 21:52:17 +03:00
|
|
|
|
2021-03-04 21:52:19 +03:00
|
|
|
template <class KeyClass, class PtrType>
|
|
|
|
class nsRefCountedHashtable;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* templated hashtable class maps keys to interface pointers.
|
|
|
|
* See nsBaseHashtable for complete declaration.
|
|
|
|
* @param KeyClass a wrapper-class for the hashtable key, see nsHashKeys.h
|
|
|
|
* for a complete specification.
|
|
|
|
* @param Interface the interface-type being wrapped
|
|
|
|
* @see nsDataHashtable, nsClassHashtable
|
|
|
|
*/
|
2021-03-04 21:52:17 +03:00
|
|
|
template <class KeyClass, class Interface>
|
2021-03-04 21:52:19 +03:00
|
|
|
using nsInterfaceHashtable =
|
|
|
|
nsRefCountedHashtable<KeyClass, nsCOMPtr<Interface>>;
|
2021-03-04 21:52:17 +03:00
|
|
|
|
2021-03-04 21:52:19 +03:00
|
|
|
/**
|
|
|
|
* templated hashtable class maps keys to reference pointers.
|
|
|
|
* See nsBaseHashtable for complete declaration.
|
|
|
|
* @param KeyClass a wrapper-class for the hashtable key, see nsHashKeys.h
|
|
|
|
* for a complete specification.
|
|
|
|
* @param PtrType the reference-type being wrapped
|
|
|
|
* @see nsDataHashtable, nsClassHashtable
|
|
|
|
*/
|
|
|
|
template <class KeyClass, class ClassType>
|
|
|
|
using nsRefPtrHashtable = nsRefCountedHashtable<KeyClass, RefPtr<ClassType>>;
|
2021-03-04 21:52:17 +03:00
|
|
|
|
|
|
|
#endif // XPCOM_DS_NSHASHTABLESFWD_H_
|