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
|
|
|
|
|
|
|
class nsIAtom;
|
2003-04-02 08:51:07 +04:00
|
|
|
struct nsStaticAtom;
|
2003-02-22 18:58:07 +03:00
|
|
|
|
|
|
|
class nsAtomListUtils {
|
|
|
|
public:
|
2011-09-29 10:19:26 +04:00
|
|
|
static bool IsMember(nsIAtom *aAtom,
|
2003-04-02 08:51:07 +04:00
|
|
|
const nsStaticAtom* aInfo,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t aInfoCount);
|
2003-02-22 18:58:07 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* !defined(nsAtomListUtils_h__) */
|