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