aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-query/src/main/java/tools/refinery/store/query/term/real/RealUnaryTerm.java
blob: d41c4ed9bbfab0a9ec4bc38160cc72b9f690f078 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * SPDX-FileCopyrightText: 2021-2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package tools.refinery.store.query.term.real;

import tools.refinery.store.query.term.Term;
import tools.refinery.store.query.term.UnaryTerm;

public abstract class RealUnaryTerm extends UnaryTerm<Double, Double> {
	protected RealUnaryTerm(Term<Double> body) {
		super(Double.class, Double.class, body);
	}
}