src/lib/image.h
changeset 0 cff7fac35cc2
child 1 f3cde3db1fef
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/lib/image.h	Sun Dec 27 22:01:17 2009 +0200
@@ -0,0 +1,24 @@
+#ifndef PNGTILE_IMAGE_H
+#define PNGTILE_IMAGE_H
+
+/**
+ * @file
+ *
+ * Internal pt_image state
+ */
+#include "pngtile.h"
+
+struct pt_image {
+    /** Associated global state */
+    struct pt_ctx *ctx;
+
+    /** Path to .png */
+    char *png_path;
+    
+    /** Cache object */
+    struct pt_cache *cache;
+};
+
+
+
+#endif