Files
QIDI_Q1_Pro/include/common.h
2024-03-19 15:48:17 +08:00

10 lines
173 B
C++

#ifndef COMMON_H
#define COMMON_H
#include <iostream>
#include <vector>
void super_split(const std::string& s, std::vector<std::string>& v, const std::string& c);
#endif