Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed-dev by
Diff: drivers/FileHandle.h
- Revision:
- 160:d5399cc887bb
- Parent:
- 149:156823d33999
diff -r 612c381a210f -r d5399cc887bb drivers/FileHandle.h
--- a/drivers/FileHandle.h Tue Feb 28 17:13:35 2017 +0000
+++ b/drivers/FileHandle.h Tue Mar 14 16:40:56 2017 +0000
@@ -19,14 +19,7 @@
typedef int FILEHANDLE;
#include <stdio.h>
-
-#if defined(__ARMCC_VERSION) || defined(__ICCARM__)
-typedef int ssize_t;
-typedef long off_t;
-
-#else
-# include <sys/types.h>
-#endif
+#include "platform/platform.h"
namespace mbed {
/** \addtogroup drivers */
@@ -46,6 +39,11 @@
class FileHandle {
public:
+ MBED_DEPRECATED_SINCE("mbed-os-5.4",
+ "The mbed 2 filesystem classes have been superseeded by the FileSystem api, "
+ "Replaced by File")
+ FileHandle() {}
+
/** Write the contents of a buffer to the file
*
* @param buffer the buffer to write from
@@ -120,7 +118,7 @@
return res;
}
- virtual ~FileHandle();
+ virtual ~FileHandle() {};
protected:
