forked from microsoft/calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pch.h
26 lines (23 loc) · 767 Bytes
/
pch.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#pragma once
// The CalcManager project should be able to be compiled with or without a precompiled header
// in - order to support other toolchains besides MSVC. When adding new system headers, make sure
// that the relevant source file includes all headers it needs, but then also add the system headers
// here so that MSVC users see the performance benefit.
#include <algorithm>
#include <array>
#include <cassert>
#include <intsafe.h>
#include <list>
#include <future>
#include <regex>
#include <sstream>
#include <string>
#include <unordered_map>
#include <vector>
#include <winerror.h>
#include <iostream>
#include <math.h>
#include <random>
#include <iomanip>