dhgdh

Dependencies:   MAX44000 PWM_Tone_Library nexpaq_mdk

Fork of LED_Demo by joey shelton

Revision:
1:55a6170b404f
diff -r b86eda0e990d -r 55a6170b404f mbd_os/libraries/net/https/HTTPHeader.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbd_os/libraries/net/https/HTTPHeader.h	Sat Sep 17 16:32:05 2016 +0000
@@ -0,0 +1,29 @@
+#ifndef HTTPHEADER_H
+#define HTTPHEADER_H
+
+#include <string>
+#include <map>
+
+enum HTTPStatus { HTTP_OK, HTTP_ERROR };
+
+class HTTPSClient;
+
+class HTTPHeader
+{
+    friend class HTTPSClient;
+
+    public :
+    
+        HTTPHeader();
+        
+        std::string getField(const std::string& name);  
+        int getBodyLength();
+        
+    private :
+    
+        HTTPStatus _status;
+        std::map<std::string, std::string> _fields;
+};
+
+
+#endif