fune/xpcom/ds/nsSimpleEnumerator.h
Kris Maglione 2dee0aae3c Bug 1484496: Part 4b - Add intrinsic type information to most nsSimpleEnumerators. r=froydnj
This allows JS callers to automatically get the correct types during
interation, without having to explicitly specify them.

Differential Revision: https://phabricator.services.mozilla.com/D3728

--HG--
extra : rebase_source : b708f382d8ea571d199c669bfed5b5a7ca9ffac4
extra : histedit_source : 7df6feb82088c8a5ca45dc28fe4d2b852c177fee
2018-08-18 21:06:32 -07:00

23 lines
674 B
C++

/* -*- 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 nsSimpleEnumerator_h
#define nsSimpleEnumerator_h
#include "nsISimpleEnumerator.h"
class nsSimpleEnumerator : public nsISimpleEnumerator
{
NS_DECL_ISUPPORTS
NS_DECL_NSISIMPLEENUMERATORBASE
virtual const nsID& DefaultInterface() { return NS_GET_IID(nsISupports); }
protected:
virtual ~nsSimpleEnumerator() = default;
};
#endif