package gve.calc.formula;

public abstract class UnaryOpFactory {
	public abstract UnaryOp createUnaryOp(String name,Part child);
}