#include <sstream>#include <vector>#include <string>Go to the source code of this file.
Namespaces | |
| namespace | UtilString |
Functions | |
| bool | atob (const char *s) |
| bool | atob (const char *s, bool &isvalid) |
| int | cmp_nocase (const std::string &s1, const std::string &s2) |
| int | cmp_wildcard (const std::string &s, const std::string &w) |
| void | MakePrintable (const char *in, std::string &out) |
| void | StringTok (std::vector< std::string > &ls, const std::string &str, const std::string &tok) |
| bool | IsBool (const char *s) |
| bool | IsInt (const char *s) |
| bool | IsFloat (const char *s) |
| std::string | ToLower (const std::string &str) |
| std::string | ToUpper (const std::string &str) |
| template<class T> | |
| std::string | ToString (const T &t, std::ios_base &(*f)(std::ios_base &)=std::dec) |
|
||||||||||||
|
|
|
|
Referenced by Cfg::StringToRegistry(), and write_default_config_method(). |
|
||||||||||||
|
Referenced by DemoDataReject::HandleCommand(). |
|
||||||||||||
|
Referenced by DbmNameFilter::BestMatch(), DbiRollbackDates::GetDate(), and DbiRollbackDates::GetType(). |
|
|
Referenced by parseCfg(), and Cfg::StringToRegistry(). |
|
|
Referenced by parseCfg(), and Cfg::StringToRegistry(). |
|
|
Referenced by DbmCmdOptions::GetOptIntList(), DemoSnarlList::HandleCommand(), parseCfg(), and Cfg::StringToRegistry(). |
|
||||||||||||
|
Referenced by DbuRunSummary::Commit(), DbuDaqFileSummary::Commit(), DbiResultSet::RowAsCsv(), DbiOutRowStream::Store(), and DbuDaqMonitorModule::WriteSubRunSummaryEntry(). |
|
||||||||||||||||
|
|
Referenced by RecJobRecord::GetCodeVersion(), MasterGeVPerMip::TrimOption(), and DbuDaqFileModule::WritePythonFile(). |
|
||||||||||||||||
|
Definition at line 53 of file UtilString.h. Referenced by FiltTriggerPrescale::Config(), FiltTriggerPrescale::DefaultConfig(), and main(). 00053 {
00054 std::ostringstream oss;
00055 oss << f << t;
00056 return oss.str();
00057 }
|
|
1.3.9.1