view trunk/src/common.d @ 786:3b34f6a95a27

Added and revised documenation comments.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sun, 24 Feb 2008 02:41:11 +0100
parents 33b566df6af4
children
line wrap: on
line source

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

public import tango.io.Stdout;
public import tango.text.convert.Layout;

/// String aliases.
alias char[] string;
alias wchar[] wstring; /// ditto
alias dchar[] dstring; /// ditto

/// Global formatter instance.
static Layout!(char) Format;
static this()
{
  Format = new typeof(Format);
}