blob: 27a6b5e518b14692e83728e65c0e835af7acd1af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include <My/MyHeader.h>
#ifndef MyHeader_h
bool failure_MyHeader_not_included;
#endif
#ifndef Nested_h
bool failure_Nested_header_not_included;
#endif
#ifdef IncorrectVersion_h
bool failure_Incorrect_version_of_nested_header_included;
#endif
#ifdef CorrectVersion_h
bool success_is_the_only_option;
#endif
|