aboutsummaryrefslogtreecommitdiff
path: root/drivers/windows/file_access_windows.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/windows/file_access_windows.h')
-rw-r--r--drivers/windows/file_access_windows.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/drivers/windows/file_access_windows.h b/drivers/windows/file_access_windows.h
index 9f06918b7..d64a4b98f 100644
--- a/drivers/windows/file_access_windows.h
+++ b/drivers/windows/file_access_windows.h
@@ -47,12 +47,12 @@ class FileAccessWindows : public FileAccess {
String save_path;
public:
- virtual Error _open(const String& p_path, int p_mode_flags); ///< open a file
+ virtual Error _open(const String &p_path, int p_mode_flags); ///< open a file
virtual void close(); ///< close a file
virtual bool is_open() const; ///< true when file is open
virtual void seek(size_t p_position); ///< seek to a given position
- virtual void seek_end(int64_t p_position=0); ///< seek from the end of file
+ virtual void seek_end(int64_t p_position = 0); ///< seek from the end of file
virtual size_t get_pos() const; ///< get position in the file
virtual size_t get_len() const; ///< get size of the file
@@ -65,15 +65,13 @@ public:
virtual void store_8(uint8_t p_dest); ///< store a byte
- virtual bool file_exists(const String& p_name); ///< return true if a file exists
+ virtual bool file_exists(const String &p_name); ///< return true if a file exists
- uint64_t _get_modified_time(const String& p_file);
+ uint64_t _get_modified_time(const String &p_file);
FileAccessWindows();
virtual ~FileAccessWindows();
-
};
-
#endif
#endif