root/src/add-ons/kernel/file_systems/ramfs/AttributeIndex.cpp
/*
 * Copyright 2007, Ingo Weinhold, ingo_weinhold@gmx.de.
 * All rights reserved. Distributed under the terms of the MIT license.
 */
#include "AttributeIndex.h"

// constructor
AttributeIndex::AttributeIndex(Volume *volume, const char *name, uint32 type,
                                                           bool fixedKeyLength, size_t keyLength)
        : Index(volume, name, type, fixedKeyLength, keyLength)
{
}

// destructor
AttributeIndex::~AttributeIndex()
{
}