model.MARK_II.SensorCell Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of WalnutiQ Show documentation
Show all versions of WalnutiQ Show documentation
A Java based Neuron Modeling framework
package model.MARK_II;
/**
* A data structure that represents a single input bit from an external sensor
* source.
*
* @author Quinn Liu ([email protected])
* @author Michael Cogswell ([email protected])
* @version April 4, 2013
*/
public abstract class SensorCell extends Cell {
public SensorCell() {
super();
}
}