0
0
Files
----/test4/test4-main.cpp

17 lines
294 B
C++
Raw Normal View History

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