summaryrefslogtreecommitdiffabout
path: root/include
authorMichael Krelin <hacker@klever.net>2005-05-09 11:04:24 (UTC)
committer Michael Krelin <hacker@klever.net>2005-05-09 11:04:24 (UTC)
commit01e3789f5b7c3b2c0282b70eb203d11c76d3c8f3 (patch) (side-by-side diff)
tree580ebd4a1379c40cfbaa925849de2e42dd7cd441 /include
parent981b219f5297ad2ccc1fc1d0e24e41ec009c35a3 (diff)
downloadsitecing-01e3789f5b7c3b2c0282b70eb203d11c76d3c8f3.zip
sitecing-01e3789f5b7c3b2c0282b70eb203d11c76d3c8f3.tar.gz
sitecing-01e3789f5b7c3b2c0282b70eb203d11c76d3c8f3.tar.bz2
made use of kingate's headers container.
Diffstat (limited to 'include') (more/less context) (ignore whitespace changes)
-rw-r--r--include/sitecing/sitecing_interface_cgi.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/include/sitecing/sitecing_interface_cgi.h b/include/sitecing/sitecing_interface_cgi.h
index da538d6..d17cdb7 100644
--- a/include/sitecing/sitecing_interface_cgi.h
+++ b/include/sitecing/sitecing_interface_cgi.h
@@ -1,47 +1,44 @@
#ifndef __SITECING_SITECING_INTERFACE_CGI_H
#define __SITECING_SITECING_INTERFACE_CGI_H
#include <sstream>
#include <string>
#include <map>
-#include "kingate/cgi_gateway.h"
+#include <kingate/cgi_gateway.h>
+#include <kingate/headers.h>
#include "sitecing/sitecing_interface.h"
#include "sitecing/sitespace.h"
/**
* @file
* @brief The sitecing_interface_cgi class declaration.
*/
namespace sitecing {
using namespace std;
/**
* The interface to site-C-ing core for the CGI component.
*/
class sitecing_interface_cgi : public sitecing_interface {
public:
/**
* Pointer to the CGI gateway interface.
*/
kingate::cgi_gateway* cgigw;
/**
- * Type for the map of headers to spit out.
- */
- typedef map<string,string> headers_t;
- /**
* The list of headers to spit out.
*/
- headers_t headers;
+ kingate::headers headers;
/**
* Here is where we prebuffer output.
*/
stringbuf prebuffer;
/**
* Output stream, initially going to prebuffer.
*/
ostream outs;
/**
* Have headers been sent yet?
*/
bool headers_flushed;