// Copyright 2021 xensik. All rights reserved. // // Use of this source code is governed by a GNU GPLv3 license // that can be found in the LICENSE file. #pragma once namespace xsk::gsc { class compiler { public: virtual ~compiler() = default; virtual auto output() -> std::vector = 0; virtual void compile(const std::string& file, std::vector& data) = 0; virtual void set_readf_callback(std::function(const std::string&)> func) = 0; }; } // namespace xsk::gsc