NetServices Stack source

Dependents:   HelloWorld ServoInterfaceBoardExample1 4180_Lab4

Revision:
10:d098e9192450
Parent:
9:c79fa4034f5b
--- a/services/http/client/data/HTTPFile.h	Thu Aug 05 14:32:43 2010 +0000
+++ b/services/http/client/data/HTTPFile.h	Thu Aug 05 14:54:16 2010 +0000
@@ -34,15 +34,20 @@
 ///HTTP Client data container for files
 /**
 This class provides file access/storage for HTTP requests and responses' data payloads.
+
+
 */
 class HTTPFile : public HTTPData //Read or Write data from a file
 {
 public:
   ///Instantiates data source/sink with file in param.
   /**
-  Uses file at path @param path.
+  Uses file at path @a path.
   It will be opened when some data has to be read/written from/to it and closed when this operation is complete or on destruction of the instance.
   Note that the file will be opened with mode "w" for writing and mode "r" for reading, so the file will be cleared between each request if you are using it for writing.
+  
+  @note
+  Note that to use this you must instantiate a proper file system (such as the LocalFileSystem or the SDFileSystem).
   */
   HTTPFile(const char* path);
   virtual ~HTTPFile();