test_embed_libevent_crosspl.../src/example.cpp

16 lines
238 B
C++
Raw Permalink Normal View History

2022-07-15 18:53:15 +08:00
//
// Created by Apache on 2022/7/15.
//
#include "example.h"
using std::vector;
2022-07-15 18:53:15 +08:00
int main()
{
struct event_base *base;
base = event_base_new();
vector<serial::PortInfo> devices_found = serial::list_ports();
2022-07-15 18:53:15 +08:00
return 0;
}