[aat] Implement Lookup table

Untested, but compiles.
diff --git a/src/hb-aat-layout.cc b/src/hb-aat-layout.cc
index 73ceafe..bd647d5 100644
--- a/src/hb-aat-layout.cc
+++ b/src/hb-aat-layout.cc
@@ -41,3 +41,17 @@
   hb_ot_layout_t * layout = hb_ot_layout_from_face (face);
   return *(layout->morx.get ());
 }
+
+void
+_hb_aat_layout_create (hb_face_t *face)
+{
+  OT::Sanitizer<AAT::morx> sanitizer;
+  sanitizer.set_num_glyphs (face->get_num_glyphs ());
+  hb_blob_t *morx_blob = sanitizer.sanitize (face->reference_table (HB_AAT_TAG_MORX));
+  OT::Sanitizer<AAT::morx>::lock_instance (morx_blob);
+
+  if (0)
+  {
+    OT::Sanitizer<AAT::Lookup<OT::GlyphID> >::lock_instance (morx_blob)->get_value (1, face->get_num_glyphs ());
+  }
+}