Host library for controlling a WiConnect enabled Wi-Fi module.

Dependents:   wiconnect-ota_example wiconnect-web_setup_example wiconnect-test-console wiconnect-tcp_server_example ... more

Revision:
17:7268f365676b
Parent:
16:7f1d6d359787
Child:
24:e27e23297f02
--- a/types/FileList.h	Wed Aug 13 04:41:04 2014 -0700
+++ b/types/FileList.h	Sat Aug 23 05:39:17 2014 -0700
@@ -30,7 +30,7 @@
 
 
 #include "Wiconnect.h"
-#include "types/File.h"
+#include "types/WiconnectFile.h"
 
 namespace wiconnect
 {
@@ -47,13 +47,13 @@
     FileList(int bufferLen = 0, void *buffer = NULL);
     ~FileList();
 
-    const File* getListHead() const;
+    const WiconnectFile* getListHead() const;
     int getCount() const;
-    const File* getResult(int i) const;
-    const File* operator [](int i) const;
+    const WiconnectFile* getResult(int i) const;
+    const WiconnectFile* operator [](int i) const;
 
 protected:
-    File *listHead, *listTail;
+    WiconnectFile *listHead, *listTail;
     uint8_t *buffer;
     uint8_t *bufferPtr;
     int bufferLen;