forked from SideStore/SideServer-Windows
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrefixHeader.pch
More file actions
executable file
·30 lines (23 loc) · 976 Bytes
/
PrefixHeader.pch
File metadata and controls
executable file
·30 lines (23 loc) · 976 Bytes
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
27
28
29
30
//
// PrefixHeader.pch
// AltServer-Windows
//
// Created by Riley Testut on 8/8/19.
// Copyright © 2019 Riley Testut. All rights reserved.
//
#ifndef PrefixHeader_pch
#define PrefixHeader_pch
#include <cpprest/http_client.h>
#include <cpprest/filestream.h>
#include <string>
#include "Account.hpp"
#include "Team.hpp"
#include "Error.hpp"
using namespace utility; // Common utilities like string conversions
using namespace web; // Common features like URIs.
using namespace web::http; // Common HTTP functionality
using namespace web::http::client; // HTTP client features
using namespace concurrency::streams; // Asynchronous streams
// Include any system framework and library headers here that should be included in all compilation units.
// You will also need to set the Prefix Header build setting of one or more of your targets to reference this file.
#endif /* PrefixHeader_pch */