All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
string_32.h
Go to the documentation of this file.
1 /**********************************************************************
2  * File: string_32.h
3  * Description: Declaration of a 32 Bit string class
4  * Author: Ahmad Abdulkader
5  * Created: 2007
6  *
7  * (C) Copyright 2008, Google Inc.
8  ** Licensed under the Apache License, Version 2.0 (the "License");
9  ** you may not use this file except in compliance with the License.
10  ** You may obtain a copy of the License at
11  ** http://www.apache.org/licenses/LICENSE-2.0
12  ** Unless required by applicable law or agreed to in writing, software
13  ** distributed under the License is distributed on an "AS IS" BASIS,
14  ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  ** See the License for the specific language governing permissions and
16  ** limitations under the License.
17  *
18  **********************************************************************/
19 
20 // the string_32 class provides the functionality needed
21 // for a 32-bit string class
22 
23 #ifndef STRING_32_H
24 #define STRING_32_H
25 
26 #include <string.h>
27 #include <string>
28 #include <algorithm>
29 #include <vector>
30 
31 #ifdef USE_STD_NAMESPACE
32 using std::basic_string;
33 using std::string;
34 using std::vector;
35 #endif
36 
37 namespace tesseract {
38 
39 // basic definitions
40 typedef signed int char_32;
41 typedef basic_string<char_32> string_32;
42 }
43 
44 #endif // STRING_32_H
basic_string< char_32 > string_32
Definition: string_32.h:41
signed int char_32
Definition: string_32.h:40