mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-24 08:30:56 +01:00
16 lines
238 B
C++
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; }
|
|
};
|