/*
 * File: NameSurferEntry.java
 * --------------------------
 * This class represents a single entry in the database.  Each
 * NameSurferEntry contains a name and a list giving the popularity
 * of that name for each decade stretching back to 1900.
 */

import acm.util.*;
import java.util.*;

public class Country implements MindsetConstants {

	private String name;
	private double[] gdp;
	private double[] lifeExpectancy;
	
	
	
/* Constructor: */
	public Country() {
		// You fill this in //
	}

/* Method: getName() */
	public String getName() {
		// You need to turn this stub into a real implementation //
		return null;
	}

/* Method: toString() */
	public String toString() {
		// You need to turn this stub into a real implementation //
		return "";
	}
}

