01: /*
02: *******************************************************************************
03: * Copyright (C) 1998-2004, International Business Machines Corporation and *
04: * others. All Rights Reserved. *
05: *******************************************************************************
06: *
07: * Created on Dec 3, 2003
08: *
09: *******************************************************************************
10: */
11: package com.ibm.icu.dev.tool.layout;
12:
13: public class LigatureModuleWriter extends ModuleWriter {
14: public LigatureModuleWriter() {
15: super ();
16: }
17:
18: public void writeTable(OpenTypeTableWriter tableWriter) {
19: tableWriter.writeTable(output);
20: }
21: }
|