#pragma once #include #include #include #include "PointCloudData.h" using namespace std; using namespace pcl; class MyThread : public QThread { public: MyThread(); ~MyThread(){}; void setPcd(QString str); PointCloud getCloud(); private: string pcd; PointCloud cloud; protected: void run(); };