1 /************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 24 #ifndef ADC_DISPLAY_HTML_STRCONST_HXX 25 #define ADC_DISPLAY_HTML_STRCONST_HXX 26 27 28 const char * const C_sDIR_NamespacesCpp = "names"; 29 const char * const C_sDIR_Index = "index-files"; // Convention recognised by Javadoc 30 31 const char * const C_sPath_Index = "index-files/index-1.html"; // Convention recognised by Javadoc 32 33 const char * const C_sHFN_Css = "cpp.css"; 34 const char * const C_sHFN_Overview = "index.html"; 35 const char * const C_sHFN_Help = "help.html"; 36 37 const char * const C_sHFN_Namespace = "index.html"; 38 39 const char * const C_sTitle_SubNamespaces = "Nested Namespaces"; 40 const char * const C_sTitle_Classes = "Classes"; 41 const char * const C_sTitle_Structs = "Structs"; 42 const char * const C_sTitle_Unions = "Unions"; 43 const char * const C_sTitle_Enums = "Enums"; 44 const char * const C_sTitle_Typedefs = "Typedefs"; 45 const char * const C_sTitle_Operations = "Functions"; 46 const char * const C_sTitle_Constants = "Constants"; 47 const char * const C_sTitle_Variables = "Variables"; 48 const char * const C_sTitle_EnumValues = "Values"; 49 50 const char * const C_sLabel_SubNamespaces = "subnsps"; 51 const char * const C_sLabel_Classes = "classes"; 52 const char * const C_sLabel_Structs = "structs"; 53 const char * const C_sLabel_Unions = "unions"; 54 const char * const C_sLabel_Enums = "enums"; 55 const char * const C_sLabel_Typedefs = "tydefs"; 56 const char * const C_sLabel_Operations = "ops"; 57 const char * const C_sLabel_Constants = "consts"; 58 const char * const C_sLabel_Variables = "vars"; 59 const char * const C_sLabel_EnumValues = "envals"; 60 61 const char * const C_sHFTitle_Overview = "C++ Reference Documentation Overview"; 62 const char * const C_sHFTitle_Help = "How This Reference Document Is Organized"; 63 64 const char * const C_sHFTitle_GlobalNamespaceCpp = "Global Namespace in C++"; 65 const char * const C_sHFTypeTitle_Namespace = "namespace"; 66 const char * const C_sHFTypeTitle_Class = "class"; 67 const char * const C_sHFTypeTitle_Struct = "struct"; 68 const char * const C_sHFTypeTitle_Union = "union"; 69 const char * const C_sHFTypeTitle_Enum = "enum"; 70 const char * const C_sHFTypeTitle_Typedef = "typedef"; 71 72 73 #endif 74 75