22 lines
482 B
C++
22 lines
482 B
C++
#pragma once
|
|
/**
|
|
* @file sample.h
|
|
* @brief 定义样本
|
|
* @author your name (you@domain.com)
|
|
* @version 0.1
|
|
* @date 2023-12-22
|
|
*
|
|
* Copyright: Baosight Co. Ltd.
|
|
* DO NOT COPY/USE WITHOUT PERMISSION
|
|
*
|
|
*/
|
|
#include <boost/container/small_vector.hpp>
|
|
#include <boost/container/string.hpp>
|
|
#include <boost/container/vector.hpp>
|
|
#include <vector>
|
|
|
|
using boost::container::small_vector;
|
|
|
|
using SamplePoint = small_vector<double, 3>;
|
|
using SampleWindow = std::vector<SamplePoint>;
|