1 /*
2 Copyright 2000 by Ralph Hartley
3 This software is licenced under the terms of the
4 Gnu Public Licence
5 */
6 public interface LibraryUser {
7
8 public void libSymbol(Symbol sym);
9 public Symbol libSave();
10
11 }
12