-rw-r--r-- | include/sitecing/sitecing_interface.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sitecing/sitecing_interface.h b/include/sitecing/sitecing_interface.h index f0210d6..a0e1b8a 100644 --- a/include/sitecing/sitecing_interface.h +++ b/include/sitecing/sitecing_interface.h | |||
@@ -13,32 +13,32 @@ namespace sitecing { | |||
13 | 13 | ||
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 | /** | 26 | /** |
27 | * Serial number of request being processed. | 27 | * Serial number of request being processed. |
28 | */ | 28 | */ |
29 | long serial; | 29 | unsigned long serial; |
30 | 30 | ||
31 | /** | 31 | /** |
32 | * The default constructor doesn't do much. | 32 | * The default constructor doesn't do much. |
33 | */ | 33 | */ |
34 | sitecing_interface() : out(0), serial(0) {} | 34 | sitecing_interface() : out(0), serial(0) {} |
35 | /** | 35 | /** |
36 | * The constructor initializes the output stream pointer. | 36 | * The constructor initializes the output stream pointer. |
37 | * @param o the value to initialize the output stream pointer with. | 37 | * @param o the value to initialize the output stream pointer with. |
38 | */ | 38 | */ |
39 | sitecing_interface(ostream* o) : out(o) {} | 39 | sitecing_interface(ostream* o) : out(o), serial(0) {} |
40 | }; | 40 | }; |
41 | 41 | ||
42 | } | 42 | } |
43 | 43 | ||
44 | #endif /* __SITECING_SITECING_INTERFACE_H */ | 44 | #endif /* __SITECING_SITECING_INTERFACE_H */ |