mirror of
https://github.com/QIDITECH/QIDI_Q1_Pro.git
synced 2026-01-30 15:38:43 +03:00
10 lines
173 B
C
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
|