comparison src/Settings.d @ 806:bcb74c9b895c

Moved out files in the trunk folder to the root.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sun, 09 Mar 2008 00:12:19 +0100
parents trunk/src/Settings.d@c24be8d4f6ab
children 4063da6f3edd
comparison
equal deleted inserted replaced
805:a3fab8b74a7d 806:bcb74c9b895c
1 /++
2 Author: Aziz Köksal
3 License: GPL3
4 +/
5 module Settings;
6 import common;
7
8 /// Global application settings.
9 struct GlobalSettings
10 {
11 static:
12 /// Predefined version identifiers.
13 string[] versionIds;
14 /// Path to the language file.
15 string langFile = "lang_en.d";
16 /// Language code of loaded messages catalogue.
17 string langCode = "en";
18 /// Table of localized compiler messages.
19 string[] messages;
20 /// Array of import paths to look for modules.
21 string[] importPaths;
22 /// Array of DDoc macro file paths.
23 string[] ddocFilePaths;
24 string xmlMapFile = "xml_map.d"; /// XML map file.
25 string htmlMapFile = "html_map.d"; /// HTML map file.
26 string lexerErrorFormat = "{0}({1},{2})L: {3}"; /// Lexer error.
27 string parserErrorFormat = "{0}({1},{2})P: {3}"; /// Parser error.
28 string semanticErrorFormat = "{0}({1},{2})S: {3}"; /// Semantic error.
29 }