mirror of
https://github.com/tribufu/sdk-cpp
synced 2025-06-18 18:24:18 +00:00
Create c++ project
This commit is contained in:
.editorconfig.gitattributes.gitignoreLICENSE.txtbootstrap.ps1bootstrap.sh
examples
include
premake5.luascripts
src
vendor
12
examples/main.cpp
Normal file
12
examples/main.cpp
Normal file
@ -0,0 +1,12 @@
|
||||
// Copyright (c) Tribufu. All Rights Reserved.
|
||||
|
||||
#include <iostream>
|
||||
|
||||
#include <tribufu/sdk.h>
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
auto client = TribufuClient(0, "client_secret");
|
||||
std::cout << "client_id: " << client.get_id() << std::endl;
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user