blob: 298e7869440109ac3c539278d5e28910940389e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef BU_SIO_H
#define BU_SIO_H
#include "bu/stdstream.h"
#include "bu/formatter.h"
namespace Bu
{
extern Bu::StdStream sioRaw;
extern Bu::Formatter sio;
};
#endif
|