mirror of
https://github.com/tribufu/sdk-cpp
synced 2025-06-15 20:14:18 +00:00
21 lines
432 B
C++
21 lines
432 B
C++
// Copyright (c) Tribufu. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include <tribufu/sdk.h>
|
|
|
|
namespace tribufu
|
|
{
|
|
class TRIBUFU_API TribufuSdk
|
|
{
|
|
public:
|
|
static bool Initialize();
|
|
static void Shutdown();
|
|
static bool Ping();
|
|
static void PingAsync(void *client_date, TribufuSdkPingCallback callback);
|
|
|
|
private:
|
|
static void PingCallbackHandler(void *client_data, bool result);
|
|
};
|
|
}
|