12345678910111213141516171819 |
- /*
- * Copyright (c) 2025. Andrew Grant Carrick Software. All rights reserved
- *
- */
- package scot.carricksoftware.grantswriter.writer;
- public interface LatexWriter {
- @SuppressWarnings("unused")
- boolean open(String fileName);
- void close();
- boolean isOpen();
- void print(String string);
- void println(String string);
- }
|