-rw-r--r-- | include/sitecing/sitecing_interface.h | 6 |
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 | |||
@@ -14,27 +14,31 @@ namespace sitecing { | |||
14 | /** | 14 | /** |
15 | * @brief the interface to site-C-ing. | 15 | * @brief the interface to site-C-ing. |
16 | * | 16 | * |
17 | * The basic class used to convey communications between the component and | 17 | * The basic class used to convey communications between the component and |
18 | * the sitecing core. | 18 | * the sitecing core. |
19 | */ | 19 | */ |
20 | class sitecing_interface { | 20 | class sitecing_interface { |
21 | public: | 21 | public: |
22 | /** | 22 | /** |
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. |
34 | */ | 38 | */ |
35 | sitecing_interface(ostream* o) : out(o) {} | 39 | sitecing_interface(ostream* o) : out(o) {} |
36 | }; | 40 | }; |
37 | 41 | ||
38 | } | 42 | } |
39 | 43 | ||
40 | #endif /* __SITECING_SITECING_INTERFACE_H */ | 44 | #endif /* __SITECING_SITECING_INTERFACE_H */ |