Rosetta
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
string_constants.hh
Go to the documentation of this file.
1 // -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*-
2 // vi: set ts=2 noet:
3 //
4 // (c) Copyright Rosetta Commons Member Institutions.
5 // (c) This file is part of the Rosetta software suite and is made available under license.
6 // (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
7 // (c) For more information, see http://www.rosettacommons.org. Questions about this can be
8 // (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
9 
10 /// @file utility/string_constants.hh
11 /// @brief Commonly used string constants.
12 /// @author Labonte <JWLabonte@jhu.edu>
13 
14 
15 // C++ Header
16 #include <string>
17 
18 namespace utility {
19 
20 static std::string const UPPERCASE_LETTERS( "ABCDEFGHIJKLMNOPQRSTUVWXYZ" );
21 static std::string const LOWERCASE_LETTERS( "abcdefghijklmnopqrstuvwxyz" );
22 static std::string const LETTERS( UPPERCASE_LETTERS + LOWERCASE_LETTERS );
23 
24 static std::string const NUMERALS( "0123456789" );
25 
26 static std::string const UPPERCASE_ALPHANUMERICS( UPPERCASE_LETTERS + NUMERALS );
27 static std::string const LOWERCASE_ALPHANUMERICS( LOWERCASE_LETTERS + NUMERALS );
28 static std::string const ALPHANUMERICS( LETTERS + NUMERALS );
29 
30 } // namespace utility
static std::string const ALPHANUMERICS(LETTERS+NUMERALS)
static std::string const LOWERCASE_LETTERS("abcdefghijklmnopqrstuvwxyz")
static std::string const LOWERCASE_ALPHANUMERICS(LOWERCASE_LETTERS+NUMERALS)
static std::string const UPPERCASE_ALPHANUMERICS(UPPERCASE_LETTERS+NUMERALS)
static std::string const UPPERCASE_LETTERS("ABCDEFGHIJKLMNOPQRSTUVWXYZ")
static std::string const NUMERALS("0123456789")
static std::string const LETTERS(UPPERCASE_LETTERS+LOWERCASE_LETTERS)