diff options
| author | ruki <[email protected]> | 2023-07-04 23:02:05 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2023-07-04 23:02:05 +0800 |
| commit | 6b5f9eca01dfa8cd654014ba537e59a8f2eceeb6 (patch) | |
| tree | 8a467b656d8eadc481698225e9c2dda1c48df424 /tests/projects/objc++/precompiled_header/src/header.h | |
| parent | 92f26e98978d36475e49762114fd92c0a2324767 (diff) | |
add objc pch header support #3912
Diffstat (limited to 'tests/projects/objc++/precompiled_header/src/header.h')
| -rw-r--r-- | tests/projects/objc++/precompiled_header/src/header.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/projects/objc++/precompiled_header/src/header.h b/tests/projects/objc++/precompiled_header/src/header.h new file mode 100644 index 000000000..affda55ca --- /dev/null +++ b/tests/projects/objc++/precompiled_header/src/header.h @@ -0,0 +1,27 @@ +// header.h +#ifndef HEADER_H +#define HEADER_H + +#include <algorithm> +#include <deque> +#include <iostream> +#include <map> +#include <memory> +#include <set> +//#include <thread> +#include <utility> +#include <vector> +#include <string> +#include <queue> +#include <cstdlib> +#include <utility> +#include <exception> +#include <list> +#include <stack> +#include <complex> +#include <fstream> +#include <cstdio> +#include <iomanip> + +#endif + |
