xref: /haiku/src/add-ons/kernel/file_systems/ramfs/AttributeIndex.cpp (revision 1773f0767ed809a3c64ccc0c1037f3c8a1d5de33)
1 /*
2  * Copyright 2007, Ingo Weinhold, ingo_weinhold@gmx.de.
3  * All rights reserved. Distributed under the terms of the MIT license.
4  */
5 #include "AttributeIndex.h"
6 
7 // constructor
8 AttributeIndex::AttributeIndex(Volume *volume, const char *name, uint32 type,
9 							   bool fixedKeyLength, size_t keyLength)
10 	: Index(volume, name, type, fixedKeyLength, keyLength)
11 {
12 }
13 
14 // destructor
15 AttributeIndex::~AttributeIndex()
16 {
17 }
18 
19