/* * Copyright (c) 2002, Name * $Id: parse.h,v 1.1.1.1 2002/08/18 17:28:51 aeneas Exp $ */ #ifndef JFK_PARSE_H #define JFK_PARSE_H #include namespace JFK { std::string argument(int index, const std::string& objstring); std::string identifier(const std::string& arg); std::string value(const std::string& arg); double strtodbl(const std::string& s); int strtoint(const std::string& s); } #endif