LatexWriter.java 345 B

12345678910111213141516171819
  1. /*
  2. * Copyright (c) 2025. Andrew Grant Carrick Software. All rights reserved
  3. *
  4. */
  5. package scot.carricksoftware.grantswriter.writer;
  6. public interface LatexWriter {
  7. @SuppressWarnings("unused")
  8. boolean open(String fileName);
  9. void close();
  10. boolean isOpen();
  11. void print(String string);
  12. void println(String string);
  13. }