Doxygen update

This commit is contained in:
Harry Moffat 2009-01-12 19:39:14 +00:00
parent c731d5a03c
commit 012586fe01
2 changed files with 16 additions and 2 deletions

View file

@ -138,7 +138,7 @@ namespace Cantera {
/**
* Strip non-printing characters.
*/
std::string stripnonprint(std::string s) {
std::string stripnonprint(const std::string &s) {
int i;
int n = static_cast<int>(s.size());
std::string ss = "";

View file

@ -62,8 +62,22 @@ namespace Cantera {
*/
std::string stripws(const std::string &s);
std::string stripnonprint(std::string s);
//! Strip non-printing characters wherever they are
/*!
* @param s Input string
* @return Returns a copy of the string,
* stripped of all non-printing characters.
*/
std::string stripnonprint(const std::string &s);
//! Cast a copy of a string to lower case
/*!
* @param s Input string
* @return Returns a copy of the string,
* with all characters lowercase.
*/
std::string lowercase(const std::string &s);
void parseCompString(const std::string ss, compositionMap& x);
void split(const std::string ss, std::vector<std::string>& w);
int fillArrayFromString(const std::string& str, doublereal* a, char delim = ' ');