mirror of https://github.com/infosecn1nja/C3.git
22 lines
823 B
C
22 lines
823 B
C
|
#pragma once
|
||
|
|
||
|
// C3 Precompiled header.
|
||
|
#include "Common/MWR/C3/PrecompiledHeader.hpp"
|
||
|
|
||
|
// Standard library includes.
|
||
|
#include <chrono> //< C++ time library.
|
||
|
#include <cctype> //< For std::isprint().
|
||
|
#include <fstream> //< Used by BinaryImageUtils.
|
||
|
#include <optional> //< For std::optional.
|
||
|
#include <type_traits> //< For traits.
|
||
|
#include <iostream> //< For std::cout. Parts that are common for NodeRelay and GateRelay should not use it.
|
||
|
|
||
|
// External dependencies.
|
||
|
#include "Common/json/json.hpp" //< For json.
|
||
|
|
||
|
// Namespaces.
|
||
|
using json = nlohmann::json; //< For JSON format.
|
||
|
|
||
|
// Literals.
|
||
|
using namespace std::chrono_literals;
|