mirror of
https://github.com/tribufu/sdk-cpp
synced 2025-06-15 11:34:18 +00:00
* New api from upstream * Create .clang-format * Update .clang-format * Remove mintaka submodule * Add premake-core submodule * Update premake-core * Fix includes
21 lines
426 B
C++
21 lines
426 B
C++
// Copyright (c) Tribufu. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include <tribufu/client.h>
|
|
#include <tribufu/prelude.h>
|
|
|
|
namespace tribufu
|
|
{
|
|
class TRIBUFU_API TribufuServer : public TribufuClient
|
|
{
|
|
private:
|
|
uint64_t server_id;
|
|
|
|
public:
|
|
TribufuServer(uint64_t server_id, uint64_t client_id, const std::string &client_secret);
|
|
~TribufuServer();
|
|
uint64_t &get_server_id();
|
|
};
|
|
}
|