loom
1/*
2MIT License
3
4Copyright (c) 2022 МГТУ им. Н.Э. Баумана, кафедра ИУ-6, Михаил Фетисов,
5
6https://bmstu.codes/lsx/simodo/loom
7*/
8
9#include "ScriptPreview.h"
10
11namespace simodo::interpret
12{
13ScriptPreview::ScriptPreview(ModuleManagement_interface & module_management)
14: ScriptSemantics_abstract(module_management)
15{
16}
17
18bool ScriptPreview::checkInterpretType(InterpretType interpret_type) const
19{
20return interpret_type == InterpretType::Preview;
21}
22
23}