0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-24 16:46:00 +01:00
mongodb/util/builder.h

16 lines
238 B
C
Raw Normal View History

2007-10-20 01:35:48 +02:00
/* 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; }
};