blob: 18f19d6e557bf19a4b81aea49da6960911ee9498 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef TSF_WRITER_H
#define TSF_WRITER_H
#include <stdint.h>
namespace Bu
{
/**
*
*/
class TsfWriter
{
public:
TsfWriter();
virtual ~TsfWriter();
private:
};
}
#endif
|