#pragma once /* * Copyright (C) 2024 Brett Terpstra * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef LILFBTF5_FWDDECL_H #define LILFBTF5_FWDDECL_H #include #include #include "blt/std/ranges.h" #include namespace fb { namespace detail { class node_t; } class func_t; class tree_t; class type_engine_t; class gp_system_t; // no way we are going to have more than 4billion types or functions. using type_id = blt::u32; using function_id = blt::u32; using arg_c_t = blt::size_t; using func_t_call_t = std::function)>; using function_name = const std::string&; using type_name = const std::string&; } #endif //LILFBTF5_FWDDECL_H