1 /***
2  * Copyright (C) Microsoft. All rights reserved.
3  * Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
4  *
5  * =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
6  *
7  * stdafx.h
8  *
9  * Pre-compiled headers
10  *
11  * =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
12  ****/
13 
14 #pragma once
15 
16 #include <fstream>
17 #include <memory>
18 #include <stdio.h>
19 #include <time.h>
20 #include <vector>
21 
22 #if (defined(_MSC_VER) && (_MSC_VER >= 1800)) && !CPPREST_FORCE_PPLX
23 #include <ppltasks.h>
24 namespace pplx = Concurrency;
25 #else
26 #include "pplx/pplxtasks.h"
27 #endif
28 
29 #include "cpprest/asyncrt_utils.h"
30 #include "cpprest/containerstream.h"
31 #include "cpprest/filestream.h"
32 #include "cpprest/interopstream.h"
33 #include "cpprest/producerconsumerstream.h"
34 #include "cpprest/rawptrstream.h"
35 #include "cpprest/streams.h"
36 #include "os_utilities.h"
37 #include "streams_tests.h"
38 #include "unittestpp.h"
39