clean up imports
This commit is contained in:
parent
034a7a95a1
commit
70a6000884
5 changed files with 16 additions and 23 deletions
|
@ -1,11 +1,12 @@
|
||||||
#ifndef DYNAMIC_PROGRAM_DOWNLOAD_H
|
#ifndef DYNAMIC_PROGRAM_DOWNLOAD_H
|
||||||
#define DYNAMIC_PROGRAM_DOWNLOAD_H
|
#define DYNAMIC_PROGRAM_DOWNLOAD_H
|
||||||
|
|
||||||
#include <boost/json.hpp>
|
|
||||||
#include <cpr/cpr.h>
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <fstream>
|
|
||||||
#include <variant>
|
#include <variant>
|
||||||
|
#include <vector>
|
||||||
|
#include <memory>
|
||||||
|
|
||||||
|
#include <boost/json.hpp>
|
||||||
|
|
||||||
#include "game_state.h"
|
#include "game_state.h"
|
||||||
#include "myassert.h"
|
#include "myassert.h"
|
||||||
|
|
|
@ -2,18 +2,17 @@
|
||||||
#define DYNAMIC_PROGRAM_GAME_STATE_H
|
#define DYNAMIC_PROGRAM_GAME_STATE_H
|
||||||
|
|
||||||
#include <array>
|
#include <array>
|
||||||
#include <stack>
|
|
||||||
#include <cstdint>
|
|
||||||
#include <algorithm>
|
|
||||||
#include <cstddef>
|
|
||||||
#include <unordered_map>
|
|
||||||
#include <bitset>
|
#include <bitset>
|
||||||
#include <vector>
|
#include <cstdint>
|
||||||
#include <limits>
|
#include <limits>
|
||||||
#include <optional>
|
|
||||||
#include <boost/container/static_vector.hpp>
|
|
||||||
#include <list>
|
#include <list>
|
||||||
|
#include <optional>
|
||||||
#include <ostream>
|
#include <ostream>
|
||||||
|
#include <stack>
|
||||||
|
#include <unordered_map>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
#include <boost/container/static_vector.hpp>
|
||||||
#include <boost/rational.hpp>
|
#include <boost/rational.hpp>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <iterator>
|
|
||||||
#include "myassert.h"
|
#include "myassert.h"
|
||||||
#include "game_state.h"
|
#include "game_state.h"
|
||||||
#include <vector>
|
|
||||||
#include <map>
|
|
||||||
|
|
||||||
namespace Hanabi {
|
namespace Hanabi {
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
#include "download.h"
|
|
||||||
#include <boost/json/src.hpp>
|
#include <boost/json/src.hpp>
|
||||||
|
#include <cpr/cpr.h>
|
||||||
|
|
||||||
|
#include "download.h"
|
||||||
|
|
||||||
|
|
||||||
// This helper function deduces the type and assigns the value with the matching key
|
// This helper function deduces the type and assigns the value with the matching key
|
||||||
|
|
|
@ -1,16 +1,9 @@
|
||||||
//
|
|
||||||
// Created by maximilian on 7/13/23.
|
|
||||||
//
|
|
||||||
|
|
||||||
#include <boost/rational.hpp>
|
|
||||||
#include <cstdint>
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <optional>
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
#include <variant>
|
||||||
|
|
||||||
#include "game_state.h"
|
#include "game_state.h"
|
||||||
#include "download.h"
|
#include "download.h"
|
||||||
#include "myassert.h"
|
|
||||||
#include "cli_interface.h"
|
#include "cli_interface.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue