diff standard_tools.d @ 16:9e63308b749c

* Fix up public/private includes * Make Mask a struct
author David Bryant <daveb@acres.com.au>
date Mon, 13 Jul 2009 16:16:17 +0930
parents 0b7e7d43a79d
children c643c04e3f5e
line wrap: on
line diff
--- a/standard_tools.d	Sun Jul 12 13:23:06 2009 +0930
+++ b/standard_tools.d	Mon Jul 13 16:16:17 2009 +0930
@@ -1,11 +1,12 @@
 module standard_tools;
 
-import tool;
-import icanvas;
-import tk.types;
-import tk.events;
-import tk.geometry;
-import std.math;
+public {
+    import tool;
+}
+
+private {
+    import std.math;
+}
 
 final class PanTool : Tool {
     bool handle_button_press(Viewport viewport, in ButtonEvent event) {