Android App für SRCP gesteuerte Modelleisenbahnen
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

26 lines
496B

  1. package de.erich.railcontrol;
  2. import java.io.IOException;
  3. public class MainCall {
  4. /**
  5. * @param args
  6. */
  7. static ParseLoksConfiguration lConf = new ParseLoksConfiguration();
  8. public MainCall(String directory) throws IOException {
  9. lConf.parseConfiguration(directory + "/configuration.txt");
  10. /*try {
  11. lConf.printConfiguration(directory + "/configuration.out");
  12. } catch (IOException e) {
  13. System.out.println("Error: " + e);
  14. System.exit(0);
  15. } */
  16. }
  17. }