View Javadoc

1   package net.sf.tourviewer.lib.ciclo;
2   
3   import net.sf.tourviewer.lib.Device;
4   
5   
6   public interface CicloDevice extends Device {
7   	
8   	int NO_INDEX = -1; 
9   	int DEFAULT_INFO_BLOCK_INDEX = 16; // offset 0x0080
10  	int DEFAULT_TOUR_BLOCK_INDEX = 19; // offset 0x0098
11  
12  	int getTourBlockIndex();
13  	
14  	int getInfoBlockIndex();
15  	
16  }