0
0
Files
----/test2/test2-main.cpp

18 lines
295 B
C++

#include "test2.h"
#include <iostream>
#include <cstring>
#include <chrono>
#include <thread>
int main() {
// 初始化AD硬件服务化
test2_init(0, "test2_Service");
while (true) {
std::this_thread::sleep_for(std::chrono::seconds(3));
}
return 0;
}