//
// Copyright (c) 2008-2011, Kenneth Bell
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
//
namespace DiscUtils.Registry
{
using System.Collections.Generic;
internal abstract class ListCell : Cell
{
public ListCell(int index)
: base(index)
{
}
///
/// Gets the number of subkeys in this list.
///
internal abstract int Count { get; }
///
/// Searches for a key with a given name.
///
/// The name to search for.
/// The index of the cell, if found.
/// The search result.
internal abstract int FindKey(string name, out int cellIndex);
///
/// Enumerates all of the keys in the list.
///
/// The list to populate.
internal abstract void EnumerateKeys(List names);
///
/// Enumerates all of the keys in the list.
///
/// Enumeration of key cells.
internal abstract IEnumerable EnumerateKeys();
///
/// Adds a subkey to this list.
///
/// The name of the subkey.
/// The cell index of the subkey.
/// The new cell index of the list, which may have changed.
internal abstract int LinkSubKey(string name, int cellIndex);
///
/// Removes a subkey from this list.
///
/// The name of the subkey.
/// The new cell index of the list, which may have changed.
internal abstract int UnlinkSubKey(string name);
}
}