Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Unsigned.h 394 B
#pragma once

#include <core/xmlApi.hpp>

namespace core {

template < >
struct xmlApi < unsigned > {
	static unsigned parse ( ext::deque < sax::Token >::iterator & input );
	static bool first ( const ext::deque < sax::Token >::const_iterator & input );
	static std::string xmlTagName ( );
	static void compose ( ext::deque < sax::Token > & output, unsigned data );
};

} /* namespace core */