2015-05-03 22:32:37 +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: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2003-02-22 18:58:07 +03:00
|
|
|
|
2006-03-30 12:03:04 +04:00
|
|
|
/*
|
|
|
|
* Static helper class for implementing atom lists.
|
|
|
|
*/
|
|
|
|
|
2003-02-22 18:58:07 +03:00
|
|
|
#ifndef nsAtomListUtils_h__
|
|
|
|
#define nsAtomListUtils_h__
|
|
|
|
|
2013-07-30 18:25:31 +04:00
|
|
|
#include <stdint.h>
|
2003-02-22 18:58:07 +03:00
|
|
|
|
2017-10-03 01:05:19 +03:00
|
|
|
class nsAtom;
|
2017-10-20 06:04:47 +03:00
|
|
|
struct nsStaticAtomSetup;
|
2003-02-22 18:58:07 +03:00
|
|
|
|
|
|
|
class nsAtomListUtils {
|
|
|
|
public:
|
2017-10-20 06:04:47 +03:00
|
|
|
static bool IsMember(nsAtom *aAtom,
|
|
|
|
const nsStaticAtomSetup* aSetup,
|
|
|
|
uint32_t aCount);
|
2003-02-22 18:58:07 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* !defined(nsAtomListUtils_h__) */
|