summaryrefslogtreecommitdiffabout
path: root/include/sitecing/sitecing_interface.h
Unidiff
Diffstat (limited to 'include/sitecing/sitecing_interface.h') (more/less context) (ignore whitespace changes)
-rw-r--r--include/sitecing/sitecing_interface.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/sitecing/sitecing_interface.h b/include/sitecing/sitecing_interface.h
index 0cba2bb..f0210d6 100644
--- a/include/sitecing/sitecing_interface.h
+++ b/include/sitecing/sitecing_interface.h
@@ -23,11 +23,15 @@ namespace sitecing {
23 * Pointer to the output stream. 23 * Pointer to the output stream.
24 */ 24 */
25 ostream *out; 25 ostream *out;
26 /**
27 * Serial number of request being processed.
28 */
29 long serial;
26 30
27 /** 31 /**
28 * The default constructor doesn't do much. 32 * The default constructor doesn't do much.
29 */ 33 */
30 sitecing_interface() : out(0) {} 34 sitecing_interface() : out(0), serial(0) {}
31 /** 35 /**
32 * The constructor initializes the output stream pointer. 36 * The constructor initializes the output stream pointer.
33 * @param o the value to initialize the output stream pointer with. 37 * @param o the value to initialize the output stream pointer with.