File tree Expand file tree Collapse file tree 4 files changed +165
-165
lines changed
Filter options
Expand file tree Collapse file tree 4 files changed +165
-165
lines changed
Original file line number Diff line number Diff line change 20
20
*/
21
21
22
22
#include < vector>
23
- #include < assert.h >
23
+ #include < cassert >
24
24
25
25
/*
26
- * Encapsulates all of the output to write to an arbitrary output
26
+ * Encapsulates all of the output to write to an arbitrary output
27
27
* function. This both removes the hardcoding of output to go to stdout
28
28
* and makes output thread-safe. Michael Droettboom [06-07-07]
29
29
*/
@@ -36,7 +36,7 @@ class TTStreamWriter {
36
36
public:
37
37
TTStreamWriter () { }
38
38
virtual ~TTStreamWriter () { }
39
-
39
+
40
40
virtual void write (const char *) = 0;
41
41
42
42
virtual void printf (const char * format, ...);
@@ -73,9 +73,9 @@ class TTException {
73
73
const char * getMessage () { return message; }
74
74
};
75
75
76
- /*
76
+ /*
77
77
** No debug code will be included if this
78
- ** is not defined:
78
+ ** is not defined:
79
79
*/
80
80
/* #define DEBUG 1 */
81
81
You can’t perform that action at this time.
0 commit comments