summaryrefslogtreecommitdiff
path: root/src/xmpp/body.hpp
blob: 068d1a4ba425d453be09bc32cf3a67aced602c4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once


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