Dependents:   SimpleLCDClock readCard2Twitter_http AnalogClock_StepperMotor_NTP ServoCamV1

Revision:
8:65b403c38e41
Parent:
3:7fe2ff1a61a4
--- a/services/http/client/data/HttpMap.h	Thu May 27 10:15:14 2010 +0000
+++ b/services/http/client/data/HttpMap.h	Tue Jun 01 12:55:46 2010 +0000
@@ -35,7 +35,7 @@
 class HttpMap : public HttpData, public Dictionary //Key/Value pairs
 {
 public:
-  HttpMap();
+  HttpMap(const string& keyValueSep = "=", const string& pairSep = "&");
   virtual ~HttpMap();
   
  /* string& operator[](const string& key);
@@ -63,6 +63,9 @@
   string m_buf;
   int m_len;
   bool m_chunked;
+  
+  string m_keyValueSep;
+  string m_pairSep;
 };
 
 #endif