Fork alnilam headers

This commit is contained in:
Guilherme Werner
2023-12-03 13:09:34 -03:00
parent 807289bef0
commit 859bfaa8d4
22 changed files with 278 additions and 43 deletions

View File

@@ -2,11 +2,13 @@
#include <iostream>
#include <tribufu/sdk.h>
#include <tribufu/client.h>
using namespace tribufu;
int main(int argc, char **argv)
{
auto client = TribufuClient(0, "client_secret");
std::cout << "client_id: " << client.get_id() << std::endl;
auto client = new TribufuClient(0, "client_secret");
std::cout << "client_id: " << client->get_id() << std::endl;
return 0;
}