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