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

import tools.refinery.viatra.runtime.api.ViatraQueryEngineOptions;
import tools.refinery.store.model.Model;
import tools.refinery.store.query.ModelQueryStoreAdapter;

public interface ViatraModelQueryStoreAdapter extends ModelQueryStoreAdapter {
	ViatraQueryEngineOptions getEngineOptions();

	@Override
	ViatraModelQueryAdapter createModelAdapter(Model model);
}