added licence, sample sources, reorganized trunk

This commit is contained in:
selman 2007-03-17 18:05:51 +00:00
commit 1ebea84622
71 changed files with 35508 additions and 2 deletions

View file

@ -0,0 +1,19 @@
module minwin.logging;
public import std.stream;
//version=StdOutLog;
version (LOG) {
Stream log;
version (StdOutLog) {
static this() {
log = stdout;
}
} else {
static this() {
log = new BufferedFile("log.txt",FileMode.OutNew);
}
}
}