#pragma once #include #include #include #include "PointCloudData.h" using namespace std; using namespace pcl; class YourThread : public QThread { public: YourThread(PointCloud *cloud); ~YourThread(){} void setPath(string pathArg); private: PointCloud *cloud; string path; protected: void run(); };