1   package org.wcb.e6b;
2   
3   /**
4    * Created by IntelliJ IDEA.
5    * User: wbogaardt
6    * Date: Aug 23, 2005
7    * Time: 6:58:27 PM
8    * To change this template use File | Settings | File Templates.
9    */
10  public abstract class AbstractE6B {
11  
12      /**
13       * Implementation should be done in the sub-classes of this
14       * class. 
15       */
16      public abstract void calculate();
17  }