xref: /haiku/src/add-ons/kernel/file_systems/ramfs/AttributeIndex.cpp (revision 9e54316c528c34ee76f4d0d21150ceadd031c4de)
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