Chromium Code Reviews| Index: base/string_split.h |
| =================================================================== |
| --- base/string_split.h (revision 0) |
| +++ base/string_split.h (revision 0) |
| @@ -0,0 +1,27 @@ |
| +// Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef BASE_STRING_SPLIT_H_ |
| +#define BASE_STRING_SPLIT_H_ |
| + |
| +#include <string> |
| +#include <utility> |
| +#include <vector> |
| + |
| +namespace base { |
| + |
| +bool SplitStringIntoKeyValues( |
| + const std::string& line, |
| + char key_value_delimiter, |
| + std::string* key, std::vector<std::string>* values); |
|
Denis Lagno
2011/03/24 15:49:20
I have concerns about these
First problem is its w
|
| + |
| +bool SplitStringIntoKeyValuePairs( |
| + const std::string& line, |
| + char key_value_delimiter, |
| + char key_value_pair_delimiter, |
| + std::vector<std::pair<std::string, std::string> >* kv_pairs); |
| + |
| +} // namespace base |
| + |
| +#endif // BASE_STRING_SPLIT_H |
| Property changes on: base\string_split.h |
| ___________________________________________________________________ |
| Added: svn:eol-style |
| + LF |