import java.io.*;
import javagently.*;

class Rates {

  /* The Rates class   by J M Bishop  Dec 1998
   * ---------------
   * Stores a country name, currency, code and rate
   */

  String country;
  String code;
  String currency;
  double conversion;

  void setRate (Stream in) throws IOException {
    code = in.readString();
    country = in.readString();
    currency = in.readString();
    // ignore first rate by overwriting it
    conversion = in.readDouble();
    conversion = in.readDouble();
  }

 }