summaryrefslogtreecommitdiff
path: root/core/os/file_access.h
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2016-02-03 11:21:52 +0100
committerRémi Verschelde <remi@verschelde.fr>2016-02-03 11:21:52 +0100
commit7cb930dbede1b9c21cf138e4a38ebb9e3dbd099f (patch)
tree2eb28d5e94d962558c4dd01809ac45ede973f4bf /core/os/file_access.h
parentfc65a57ff54d40727865ba117ed9f085bc7207fb (diff)
parent2447c3171ffae5d8ecf34883475907c8b20c2f9c (diff)
Merge pull request #3502 from trtstm/csv
Added delimiter to File.get_csv_line
Diffstat (limited to 'core/os/file_access.h')
-rw-r--r--core/os/file_access.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/os/file_access.h b/core/os/file_access.h
index 51cf839117..3249e21ffb 100644
--- a/core/os/file_access.h
+++ b/core/os/file_access.h
@@ -102,7 +102,7 @@ public:
virtual int get_buffer(uint8_t *p_dst,int p_length) const; ///< get an array of bytes
virtual String get_line() const;
- virtual Vector<String> get_csv_line() const;
+ virtual Vector<String> get_csv_line(String delim=",") const;
/**< use this for files WRITTEN in _big_ endian machines (ie, amiga/mac)
* It's not about the current CPU type but file formats.