Source code: middle/IOManager.java
1
2 /* **********************************
3 File:IOManager.java
4 Author: Alec(panovici@elcom.pub.ro)
5 Created on 06 apr '99
6 Comments: Part of the vIDE Project
7 Copyright 1999 the vIDE Team.
8 ***********************************/
9
10 package middle;
11
12 /**
13 * This is a pluggable IO manager for user interaction.
14 * Note tha this approach allows one to use some nice piping
15 * between the simulator and some other program
16 */
17 public interface IOManager{
18 public String cin();
19 public void cout(String s);
20 }