0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-24 08:30:56 +01:00
mongodb/util/builder.h
2007-10-19 19:35:48 -04:00

16 lines
238 B
C++

/* builder.h
*/
#include "../stdafx.h"
class BufBuilder {
public:
void skip(int n) { }
char* buf() { return 0; }
void decouple() { }
void append(int) { }
void append(void *, int len) { }
int len() { return 0; }
};