package byucc.jhdl.DRC.Rules;

import byucc.jhdl.DRC.*;
import byucc.jhdl.base.*;

public class Template extends DesignRule {

  public Template() {
    name="";
    description="";
    oneLineDescription="";
  }

  /* This method will be called several times by the DesignRuleChecker
   * class, once for the top-level cell and once for each of the
   * descendents of the top-level cell.
   */
  public void sortCell(Cell cl) {
  }

  /* This method returns true if the collection of cells conforms to the
   * design rule specification, false otherwise.
   */
  public boolean doCheck() {
    failureReport="";
    return true;
  }
}

