22 lines
284 B
C++
22 lines
284 B
C++
/**
|
|
* @author Edouard DUPIN
|
|
*
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
*
|
|
* @license BSD v3 (see license file)
|
|
*/
|
|
|
|
#ifndef __ETK_XML_TEST_H__
|
|
#define __ETK_XML_TEST_H__
|
|
|
|
#include <exml/Node.h>
|
|
#include <exml/Document.h>
|
|
|
|
namespace exml {
|
|
bool test();
|
|
};
|
|
|
|
|
|
#endif
|
|
|