CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RecordHelper.cc
Go to the documentation of this file.
1 #include <algorithm>
2 #include <string>
3 #include <cctype>
4 
5 using namespace std;
6 
8 string upcaseString(std::string aString)
9 {
10  transform(aString.begin(), aString.end(), aString.begin(), (int (*) (int))toupper);
11  return aString;
12 }
std::string upcaseString(std::string aString)
Definition: RecordHelper.cc:8