gsc-tool/src/t6/stdafx.hpp

27 lines
523 B
C++
Raw Normal View History

2022-02-18 13:07:37 -05:00
// Copyright 2022 xensik. All rights reserved.
//
// Use of this source code is governed by a GNU GPLv3 license
// that can be found in the LICENSE file.
#pragma once
2022-04-12 13:13:10 -04:00
#include <cstdio>
2022-02-18 13:07:37 -05:00
#include <algorithm>
2022-04-12 13:13:10 -04:00
#include <array>
2022-02-18 13:07:37 -05:00
#include <filesystem>
2022-04-12 13:13:10 -04:00
#include <fstream>
2022-02-18 13:07:37 -05:00
#include <functional>
#include <iostream>
2022-04-12 13:13:10 -04:00
#include <map>
#include <memory>
#include <regex>
#include <set>
2022-02-18 13:07:37 -05:00
#include <sstream>
2022-04-12 13:13:10 -04:00
#include <stack>
#include <stdexcept>
#include <string>
2022-02-18 13:07:37 -05:00
#include <unordered_map>
2022-04-12 13:13:10 -04:00
#include <vector>
2022-02-18 13:07:37 -05:00
using namespace std::literals;