remove dependency on APR library

This commit is contained in:
Livox-SDK
2020-12-04 22:01:38 +08:00
parent eb19d42ce4
commit 7cf759a760
564 changed files with 2880 additions and 181270 deletions
+2 -2
View File
@@ -37,11 +37,11 @@ class IOThread : public ThreadBase {
void Join();
void Uninit();
IOLoop *loop() { return loop_.get(); }
std::weak_ptr<IOLoop> loop() { return loop_; }
void ThreadFunc();
private:
std::unique_ptr<IOLoop> loop_;
std::shared_ptr<IOLoop> loop_;
};
} // namespace livox
#endif // LIVOX_IO_THREAD_H_