| 66 | } |
| 67 | |
| 68 | static std::string join( object words, CamelCase::Caps caps, const std::string &separator ) |
| 69 | { |
| 70 | vector<string> w; |
| 71 | boost::python::container_utils::extend_container( w, words ); |
| 72 | return CamelCase::join( w.begin(), w.end(), caps, separator ); |
| 73 | } |
| 74 | |
| 75 | void bindCamelCase() |
| 76 | { |
no test coverage detected