Adjusting C++ files to compile with gcc 4.9.3
[iot2.git] / benchmarks / interfaces / WeatherGatewaySmart.java
1 package iotcode.interfaces;
2
3 import java.util.List;
4 import java.util.ArrayList;
5
6 public interface WeatherGatewaySmart {
7
8         public double getInchesPerWeek();
9         public double getInchesPerMinute();
10         public int getDaysToWaterOn();
11         public void registerCallback(WeatherGatewayCallback _callbackTo);
12         public void stop();
13         public void start();
14         public void init();
15         public int getWeatherZipCode();
16 }