INTRODUCTION Overview Download and Install Documentation Publications REPOSITORY Libraries DEVELOPER Dev Guide Dashboard PEOPLE Contributors Users Project Download Mailing lists
|
tokenise.h00001 /* 00002 * GearBox Project: Peer-Reviewed Open-Source Libraries for Robotics 00003 * http://gearbox.sf.net/ 00004 * Copyright (c) 2007-2008 Alex Brooks 00005 * 00006 * This distribution is licensed to you under the terms described in 00007 * the LICENSE file included in this distribution. 00008 * 00009 */ 00010 00011 #ifndef GBXUTILACFR_TOKENISE_H 00012 #define GBXUTILACFR_TOKENISE_H 00013 00014 #include <string> 00015 #include <vector> 00016 00017 namespace gbxutilacfr { 00018 00021 std::vector<std::string> tokenise( const std::string &str, 00022 const std::string &delimiter ); 00023 00024 } 00025 00026 #endif |