Update inferPreprocess.hpp

This commit is contained in:
Ναρουσέ·μ·γιουμεμί·Χινακάννα 2023-04-07 23:46:57 +08:00 committed by GitHub
parent 8077622a7a
commit 77844c0127
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -2,6 +2,13 @@
#include "World/src/world/stonemask.h"
#include "World/src/world/matlabfunctions.h"
struct SliceResult
{
std::vector<unsigned long long> SliceOffset;
std::vector<bool> SliceTag;
cutResult(std::vector<unsigned long long>&& O, std::vector<bool>&& T) :SliceOffset(O), SliceTag(T) {}
};
class F0PreProcess
{
public: