summaryrefslogtreecommitdiff
path: root/louloulibs/xmpp/body.hpp
blob: 6ac678eb84eb692901fcc5df179f1eb1e1ba21b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef XMPP_BODY_HPP_INCLUDED
#define XMPP_BODY_HPP_INCLUDED

namespace Xmpp
{
// Contains:
// - an XMPP-valid UTF-8 body
// - an XML node representing the XHTML-IM body, or null
  typedef std::tuple<const std::string, std::unique_ptr<XmlNode>> body;
}

#endif /* XMPP_BODY_HPP_INCLUDED */