calculator/src/CalcManager/pch.h
Howard Wolosky c13b8a099e Hello GitHub
2019-01-28 16:24:37 -08:00

24 lines
454 B
C++

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#pragma once
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#include <assert.h>
#include <windows.h>
#include <winerror.h>
#include <sstream>
#include <iostream>
#include <string>
#include <memory>
#include <vector>
#include <limits>
#include <regex>
#include <unordered_map>
#include <intsafe.h>
#include <array>
#include <ppltasks.h>