#pragma once #include "exportapi.hpp" #include class POOLAPI ProcessPool { /* 进程数量 */ int m_num; struct systemapi; std::shared_ptr Impl; public: ProcessPool(int num); void exec() const; };