2024-03-11 19:21:38 -04:00
|
|
|
#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 <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LILFBTF5_FWDDECL_H
|
|
|
|
#define LILFBTF5_FWDDECL_H
|
|
|
|
|
2024-03-12 16:53:27 -04:00
|
|
|
#include <blt/std/types.h>
|
|
|
|
#include <functional>
|
|
|
|
#include "blt/std/ranges.h"
|
2024-03-12 17:16:32 -04:00
|
|
|
#include <string>
|
2024-03-12 16:53:27 -04:00
|
|
|
|
2024-03-11 19:21:38 -04:00
|
|
|
namespace fb
|
|
|
|
{
|
|
|
|
namespace detail
|
|
|
|
{
|
|
|
|
class node_t;
|
|
|
|
}
|
|
|
|
|
|
|
|
class func_t;
|
|
|
|
class tree_t;
|
2024-03-12 16:53:27 -04:00
|
|
|
|
|
|
|
class type_engine_t;
|
|
|
|
class gp_system_t;
|
|
|
|
|
2024-03-13 12:16:25 -04:00
|
|
|
// 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;
|
2024-03-12 16:53:27 -04:00
|
|
|
using func_t_call_t = std::function<void(func_t&, blt::span<detail::node_t*>)>;
|
2024-03-12 17:16:32 -04:00
|
|
|
using function_name = const std::string&;
|
|
|
|
using type_name = const std::string&;
|
2024-03-11 19:21:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif //LILFBTF5_FWDDECL_H
|