blt-gp/include/blt/gp/fwdecl.h

62 lines
1.5 KiB
C
Raw Normal View History

2024-06-02 21:27:00 -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 BLT_GP_FWDECL_H
#define BLT_GP_FWDECL_H
2024-06-26 20:24:58 -04:00
#include <functional>
#include <blt/std/logging.h>
2024-06-21 22:04:57 -04:00
2024-06-02 21:27:00 -04:00
namespace blt::gp
{
2024-06-21 22:04:57 -04:00
class gp_program;
2024-06-24 14:00:08 -04:00
2024-06-21 22:04:57 -04:00
class type;
2024-06-24 14:00:08 -04:00
2024-06-21 22:04:57 -04:00
class type_system;
2024-06-25 22:21:41 -04:00
struct op_container_t;
class evaluation_context;
2024-06-24 21:56:51 -04:00
class tree_t;
class population_t;
2024-06-21 22:04:57 -04:00
class tree_generator_t;
2024-06-24 14:00:08 -04:00
2024-06-21 22:04:57 -04:00
class grow_generator_t;
2024-06-24 14:00:08 -04:00
2024-06-21 22:04:57 -04:00
class full_generator_t;
2024-06-26 20:24:58 -04:00
class stack_allocator;
2024-06-24 14:00:08 -04:00
namespace detail
{
class operator_storage_test;
2024-06-26 20:24:58 -04:00
// context*, read stack, write stack
using callable_t = std::function<void(void*, stack_allocator&, stack_allocator&)>;
// to, from
using transfer_t = std::function<void(stack_allocator&, stack_allocator&)>;
2024-06-24 14:00:08 -04:00
}
2024-06-02 21:27:00 -04:00
}
#endif //BLT_GP_FWDECL_H