File size: 937 Bytes
b98ffbb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
#include "dora-node-api.h" // adjust this path if necessary
#include <iostream>
#include <vector>
int main()
{
std::cout << "HELLO FROM C++" << std::endl;
unsigned char counter = 0;
auto dora_node = init_dora_node();
while (1)
{
auto input = next_input(dora_node.inputs);
if (input.end_of_input)
{
break;
}
counter += 1;
std::cout << "Received input " << std::string(input.id) << " (counter: " << (unsigned int)counter << ")" << std::endl;
std::vector<unsigned char> out_vec{counter};
rust::Slice<const uint8_t> out_slice{out_vec.data(), out_vec.size()};
auto result = send_output(dora_node.send_output, "counter", out_slice);
auto error = std::string(result.error);
if (!error.empty())
{
std::cerr << "Error: " << error << std::endl;
return -1;
}
}
return 0;
}
|