diff --git a/Utils/File.mqh b/Utils/File.mqh index f1ed5d7..6a8a7b5 100644 --- a/Utils/File.mqh +++ b/Utils/File.mqh @@ -145,6 +145,7 @@ public: string readString() const {return FileReadString(m_handle);} double readNumber() const {return FileReadNumber(m_handle);} + int readInteger() const {return int(FileReadNumber(m_handle));} datetime readDateTime() const {return FileReadDatetime(m_handle);} bool readBool() const {return FileReadBool(m_handle);}