1 // -*- mode: c++; c-basic-offset: 4 -*-
3 * Copyright (C) 2006 Apple Computer, Inc
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
22 #ifndef KJS_PROPERTY_NAME_ARRAY_H
23 #define KJS_PROPERTY_NAME_ARRAY_H
25 #include "identifier.h"
27 #include <wtf/HashSet.h>
28 #include <wtf/Vector.h>
32 class PropertyNameArray
{
34 typedef Identifier ValueType
;
35 typedef Vector
<Identifier
>::const_iterator const_iterator
;
37 void add(const Identifier
&);
38 const_iterator
begin() const { return m_vector
.begin(); }
39 const_iterator
end() const { return m_vector
.end(); }
40 size_t size() const { return m_vector
.size(); }
42 Identifier
& operator[](unsigned i
) { return m_vector
[i
]; }
43 const Identifier
& operator[](unsigned i
) const { return m_vector
[i
]; }
45 void swap(PropertyNameArray
&);
47 typedef HashSet
<UString::Rep
*, PtrHash
<UString::Rep
*> > IdentifierSet
;
49 Vector
<Identifier
> m_vector
;
56 #endif // KJS_PROPERTY_NAME_ARRAY_H