#pragma once #include "XJOSGObject.h" #include "XJObjectManager/OMPointCloud.h" #include #include class COSGPointCloud : public CXJOSGObject { public: COSGPointCloud(); virtual ~COSGPointCloud(); COSGPointCloud(CXJObject * pobj); virtual int SetValue(CXJObject *obj); osg::Geode* CreateObject(); int Update(EOSGUpdateType updateType = UPDATE_ALL); protected: private: OMPoindCloud *m_obj; };