Merge branch 'blender-v4.4-release'
[blender.git] / intern / opensubdiv / internal / base / util.h
blob365b7a62a6801aae02de8a228ecb9f2364d67bd1
1 /* SPDX-FileCopyrightText: 2013 Blender Foundation
3 * SPDX-License-Identifier: GPL-2.0-or-later */
5 #ifndef OPENSUBDIV_BASE_UTIL_H_
6 #define OPENSUBDIV_BASE_UTIL_H_
8 #include <string>
9 #include <vector>
11 namespace blender::opensubdiv {
13 void stringSplit(std::vector<std::string> *tokens,
14 const std::string &str,
15 const std::string &separators,
16 bool skip_empty);
18 } // namespace blender::opensubdiv
20 #endif // OPENSUBDIV_BASE_UTIL_H_