Skip to content

Commit

Permalink
feat(File): add readInteger() to CsvFile (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
holoneo authored and dingmaotu committed Feb 19, 2019
1 parent ff0710c commit 0d009e9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Utils/File.mqh
Original file line number Diff line number Diff line change
Expand Up @@ -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);}

Expand Down

0 comments on commit 0d009e9

Please sign in to comment.