mirror of
https://github.com/tribufu/sdk-cpp
synced 2025-06-16 20:04:19 +00:00
Fix includes
This commit is contained in:
@ -3,3 +3,4 @@
|
||||
#pragma once
|
||||
|
||||
#include <tribufu/client.h>
|
||||
#include <tribufu/json.h>
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <tribufu/json.h>
|
||||
#include <tribufu/macros.h>
|
||||
#include <tribufu/native.h>
|
||||
#include <tribufu/platform.h>
|
||||
#include <tribufu/std.h>
|
||||
|
@ -3,6 +3,7 @@
|
||||
#pragma once
|
||||
|
||||
#include <tribufu/prelude.h>
|
||||
#include <tribufu/json.h>
|
||||
|
||||
namespace tribufu
|
||||
{
|
||||
|
24
include/tribufu/std.h
Normal file
24
include/tribufu/std.h
Normal file
@ -0,0 +1,24 @@
|
||||
// Copyright (c) Tribufu. All Rights Reserved.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#ifdef TRIBUFU_CPP
|
||||
#include <algorithm>
|
||||
#include <cstdarg>
|
||||
#include <cstdint>
|
||||
#include <cstdlib>
|
||||
#include <functional>
|
||||
#include <iostream>
|
||||
#include <memory>
|
||||
#include <new>
|
||||
#include <ostream>
|
||||
#include <sstream>
|
||||
#include <string>
|
||||
#include <utility>
|
||||
#endif
|
@ -3,6 +3,7 @@
|
||||
#pragma once
|
||||
|
||||
#include <tribufu/prelude.h>
|
||||
#include <tribufu/json.h>
|
||||
|
||||
namespace tribufu
|
||||
{
|
||||
|
Reference in New Issue
Block a user