Files
All-MQL5-code/Include/XML/XmlBase.mqh
T
Pierre8rTeam d2a192666b Commit
2018-06-23 11:25:42 +02:00

13 lines
1.2 KiB
Plaintext

//+------------------------------------------------------------------+
//| XmlBase.mqh |
//| yu-sha@ukr.net |
//+------------------------------------------------------------------+
// The library is designed for parsing XML documents.
// Example of use:
// CXmlDocument doc;
// doc.CreateFromFile (...);
// doc.DocumentElement.Elements[i].Text - get the contents of the i-th element
#include "XmlAttribute.mqh"
#include "XmlElement.mqh"
#include "XmlDocument.mqh"