Files

13 lines
1.2 KiB
Plaintext
Raw Permalink Normal View History

2018-06-23 11:25:42 +02:00
//+------------------------------------------------------------------+
//| 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"