view trunk/src/Settings.d @ 795:069317bb84cf

Improved CSS document.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Fri, 29 Feb 2008 03:04:15 +0100
parents 8e6fed11bb68
children c24be8d4f6ab
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";
  string htmlMapFile = "html_map.d";
  string lexerErrorFormat = "{0}({1},{2})L: {3}";
  string parserErrorFormat = "{0}({1},{2})P: {3}";
  string semanticErrorFormat = "{0}({1},{2})S: {3}";
}