view trunk/src/Settings.d @ 798:c24be8d4f6ab

Added documentation comments.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sat, 01 Mar 2008 02:53:06 +0100
parents 8e6fed11bb68
children
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.
}