STE-Industries: utilities testing
Graphic.h
Go to the documentation of this file.
1 
13 # if !defined GRAPHIC_H
14 
15 # include <assert.h>
16 # include <limits.h>
17 # include <inttypes.h>
18 
22 # define PURE_VIRTUAL = 0
23 
26 static constexpr char END_STRING = '\0';
27 
31 static constexpr int DECIMAL_BASE = 10;
32 
35 static constexpr const char* STANDARD_OUTPUT = "<standard output>";
36 
45 
54 
55 # define IgnoreValue(Expression) (static_cast<void>(Expression))
56 
64 
65 # define NumberOfElements(Array) (sizeof(Array) / sizeof((Array) [0]))
66 
70 
71 # endif
STANDARD_OUTPUT
static constexpr const char * STANDARD_OUTPUT
Definition: Graphic.h:35
END_STRING
static constexpr char END_STRING
Definition: Graphic.h:26
DECIMAL_BASE
static constexpr int DECIMAL_BASE
Definition: Graphic.h:31