#include "cheezyparser.h"
#include "message.h"
Go to the source code of this file.
Functions | |
string | get_prepped_line (istream &s, const string &comment_string) |
Readies a line for parsing. | |
vector< int > | __ivec__ (1, 1) |
vector< float > | __fvec__ (1, 1.0) |
vector< double > | __dvec__ (1, 1.0) |
vector< bool > | __bvec__ (1, 0) |
vector< string > | __svec__ (1,"") |
vector< vector< double > > | __dmat__ (1, __dvec__) |
string | get_type_string (const type_info &tid) |
boost::any | stoany (const string &type, const string &instring) |
istream & | operator>> (istream &i, vector< string > V) |
Input for stl vectors of stl strings. | |
ostream & | operator<< (ostream &o, vector< string > v) |
Output for stl vectors of stl strings. | |
istream & | operator>> (istream &in_stream, parameterMap &p) |
Stream extraction operator for parameterMaps. | |
ostream & | operator<< (ostream &out_stream, const parameterMap &p) |
Stream insertion operator for parameterMaps. | |
Variables | |
parameterMap | __pmap__ |
vector<bool> __bvec__ | ( | 1 | , | |
0 | ||||
) |
vector< vector< double > > __dmat__ | ( | 1 | , | |
__dvec__ | ||||
) |
vector<double> __dvec__ | ( | 1 | , | |
1. | 0 | |||
) |
vector<float> __fvec__ | ( | 1 | , | |
1. | 0 | |||
) |
vector<int> __ivec__ | ( | 1 | , | |
1 | ||||
) |
vector<string> __svec__ | ( | 1 | , | |
"" | ||||
) |
string get_prepped_line | ( | istream & | s, | |
const string & | comment_string | |||
) |
string get_type_string | ( | const type_info & | tid | ) |
Definition at line 25 of file cheezyparser.cc.
ostream& operator<< | ( | ostream & | out_stream, | |
const parameterMap & | p | |||
) |
ostream& operator<< | ( | ostream & | o, | |
vector< string > | v | |||
) |
Output for stl vectors of stl strings.
Specific input for vectors of strings.
Definition at line 86 of file cheezyparser.cc.
istream& operator>> | ( | istream & | in_stream, | |
parameterMap & | p | |||
) |
istream& operator>> | ( | istream & | i, | |
vector< string > | V | |||
) |
Input for stl vectors of stl strings.
Specific output for vectors of strings.
Definition at line 74 of file cheezyparser.cc.
boost::any stoany | ( | const string & | type, | |
const string & | instring | |||
) |
Definition at line 45 of file cheezyparser.cc.
Definition at line 23 of file cheezyparser.cc.