00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef OR_TOOLS_BASE_SPLIT_H_
00015 #define OR_TOOLS_BASE_SPLIT_H_
00016
00017 #include <stddef.h>
00018 #include <string>
00019 #include <utility>
00020 #include <vector>
00021
00022 #include "base/integral_types.h"
00023 #include "base/logging.h"
00024 #include "base/stringpiece.h"
00025
00026 namespace operations_research {
00027
00028
00029
00030
00031
00032
00033 void SplitStringUsing(const std::string& full, const char* delim,
00034 std::vector<std::string>* res);
00035 }
00036 #endif // OR_TOOLS_BASE_SPLIT_H_