diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-05-27 18:04:18 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-05-27 18:04:18 -0400 |
commit | da0a1109fdfeb98fce2d870783fc24d9312e55a4 (patch) | |
tree | 97e32274f60effcd2c50484c415b1960d47fd023 | |
parent | 20bbcc5e435e3b793c61300b0f9c254fb859efe5 (diff) | |
download | dm-da0a1109fdfeb98fce2d870783fc24d9312e55a4.tar.gz |
Remove ini.d
-rw-r--r-- | source/ini.d | 27 |
1 files changed, 0 insertions, 27 deletions
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); - } - } -} |