Skip to content
Snippets Groups Projects
pointcloud_impl.hpp 266 B
Newer Older
Nicolas Pope's avatar
Nicolas Pope committed
#pragma once

#include <voltu/types/pointcloud.hpp>

namespace voltu
{
namespace internal
{

class PointCloudUnstructured : public voltu::PointCloud
{
public:
	voltu::PointCloudData getHost() override;

	voltu::PointCloudData getDevice() override;

private:
};

}
}