1 /*
2  * Copyright (c) 2002, Name <email>
3  * $Id: parse.h,v 1.1.1.1 2002/08/18 17:28:51 aeneas Exp $
4  */
5 #ifndef JFK_PARSE_H
6 #define JFK_PARSE_H
7 
8 #include <string>
9 
10 namespace JFK
11 {
12 
13 std::string argument(int index, const std::string& objstring);
14 std::string identifier(const std::string& arg);
15 std::string value(const std::string& arg);
16 double      strtodbl(const std::string& s);
17 int         strtoint(const std::string& s);
18 
19 }
20 
21 #endif
22