blob: f693cdd5ef2492c8f80d5d3d4aedf085aec87e49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include <tuple>
#include <memory>
class XmlNode;
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>>;
}
|