Back to home page

Enduro/X

 
 

    


0001 #ifndef TEXT_REPORTER_HEADER
0002 #define TEXT_REPORTER_HEADER
0003 
0004 #include <cgreen/reporter.h>
0005 
0006 #ifndef __cplusplus
0007 #include <stdbool.h>
0008 #endif
0009 
0010 #ifdef __cplusplus
0011 namespace cgreen {
0012     extern "C" {
0013 #endif
0014 
0015 typedef struct text_reporter_options {
0016     bool use_colours;
0017 } TextReporterOptions;
0018 
0019 TestReporter *create_text_reporter(void);
0020 
0021 #ifdef __cplusplus
0022     }
0023 }
0024 #endif
0025 
0026 #endif