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

Improved CSS document.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Fri, 29 Feb 2008 03:04:15 +0100
parents 3b34f6a95a27
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);
}