0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/db/reci.h
2009-02-02 18:18:22 -05:00

21 lines
400 B
C++

// reci.h
#pragma once
#include "storage.h"
namespace mongo {
class RecStoreInterface {
public:
static char* get(DiskLoc d, unsigned len) { assert(false); return 0; }
static void modified(DiskLoc d) { assert(false); }
/* insert specified data as a record */
static DiskLoc insert(const char *ns, const void *obuf, int len, bool god) { assert(false); return DiskLoc(); }
};
}