1<?xml version="1.0"?>
2
3<!--
4
5file      : examples/cxx/tree/order/element/transactions.xml
6copyright : not copyrighted - public domain
7
8-->
9
10<batch xmlns="http://www.codesynthesis.com/transactions"
11       xmlns:te="http://www.codesynthesis.com/transactions-extras"
12       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
13       xsi:schemaLocation="http://www.codesynthesis.com/transactions transactions.xsd">
14  <deposit>
15    <account>123456789</account>
16    <amount>1000000</amount>
17  </deposit>
18
19  <balance>
20    <account>123456789</account>
21  </balance>
22
23  <te:block>
24    <account>123456789</account>
25    <amount>500000</amount>
26  </te:block>
27
28  <withdraw>
29    <account>123456789</account>
30    <amount>500000</amount>
31  </withdraw>
32</batch>
33