/* Volume - emulation for the B+Tree torture test**** Initial version by Axel DΓΆrfler, axeld@pinc-software.de** This file may be used under the terms of the MIT License.*/#include "Volume.h"#include <stdio.h>voidVolume::Panic(){printf("PANIC!\n");}int32Volume::GenerateTransactionID(){static int32 sTransactionID = 1;return sTransactionID++;}