1/* Volume - emulation for the B+Tree torture test
2**
3** Initial version by Axel D��rfler, axeld@pinc-software.de
4** This file may be used under the terms of the MIT License.
5*/
6
7
8#include "Volume.h"
9
10#include <stdio.h>
11
12
13void
14Volume::Panic()
15{
16	printf("PANIC!\n");
17}
18
19
20int32
21Volume::GenerateTransactionID()
22{
23	static int32 sTransactionID = 1;
24	return sTransactionID++;
25}
26