From da0a1109fdfeb98fce2d870783fc24d9312e55a4 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 27 May 2019 18:04:18 -0400 Subject: Remove ini.d --- source/ini.d | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 source/ini.d diff --git a/source/ini.d b/source/ini.d deleted file mode 100644 index c23f080..0000000 --- a/source/ini.d +++ /dev/null @@ -1,27 +0,0 @@ -module ini; - -import std.stdio; -import std.file; -import std.array; - - -struct Section_t { - string name; - string[string][] pairs; -} - -class ConfigParser { - File file; - string[string][] pairs; - int[] section_pos; - - this(File file) { - this.file = file; - } - - auto _parse() { - foreach (line; this.file.byLine) { - writeln("-> " ~ line); - } - } -} -- cgit