view 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
line wrap: on
line source

/++
  Author: Aziz Köksal
  License: GPL3
+/
module Settings;
import common;

/// Global application settings.
struct GlobalSettings
{
static:
  /// Predefined version identifiers.
  string[] versionIds;
  /// Path to the language file.
  string langFile = "lang_en.d";
  /// Language code of loaded messages catalogue.
  string langCode = "en";
  /// Table of localized compiler messages.
  string[] messages;
  /// Array of import paths to look for modules.
  string[] importPaths;
  /// Array of DDoc macro file paths.
  string[] ddocFilePaths;
  string xmlMapFile = "xml_map.d"; /// XML map file.
  string htmlMapFile = "html_map.d"; /// HTML map file.
  string lexerErrorFormat = "{0}({1},{2})L: {3}"; /// Lexer error.
  string parserErrorFormat = "{0}({1},{2})P: {3}"; /// Parser error.
  string semanticErrorFormat = "{0}({1},{2})S: {3}"; /// Semantic error.
}