// $RCSfile: Compiler.h,v $
#ifndef Compiler_h
#define Compiler_h

#include <iostream>

class Compiler {
public:
  Compiler();
  virtual void Compile (istream *);
};

#endif
