xref: /haiku/src/add-ons/kernel/file_systems/ramfs/AttributeIndex.cpp (revision ed6250c95736c0b55da79d6e9dd01369532260c0)
1 // AttributeIndex.cpp
2 
3 #include "AttributeIndex.h"
4 
5 // constructor
6 AttributeIndex::AttributeIndex(Volume *volume, const char *name, uint32 type,
7 							   bool fixedKeyLength, size_t keyLength)
8 	: Index(volume, name, type, fixedKeyLength, keyLength)
9 {
10 }
11 
12 // destructor
13 AttributeIndex::~AttributeIndex()
14 {
15 }
16 
17