Move the function to convert from xml_node to string in otherTools.

This can be usefull elsewhere than in opds_dumper
This commit is contained in:
Matthieu Gautier
2018-08-29 11:45:22 +02:00
parent f3dd83907d
commit 79b780b75b
3 changed files with 23 additions and 19 deletions

View File

@ -26,9 +26,12 @@
#include <unistd.h>
#endif
#include <pugixml.hpp>
namespace kiwix
{
void sleep(unsigned int milliseconds);
std::string nodeToString(pugi::xml_node node);
}
#endif