/
pi_coder
/
ByteMachine
Обзор
Документация
Войти
/
pi_coder
/
ByteMachine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/nodes/nodes.h
28 строк
831 B
pimenov-and
Перенос функциональности из старого проекта, в основном это описания узлов
19 июл 2026, 20:13
19 июл 2026, 20:13
cb3c51b
Код
Авторство
О чём код?
//////////////////////////////////////////////////////////////// // ByteMachine // Подключение всех заголовочных файлов узлов //////////////////////////////////////////////////////////////// #ifndef NODES_H #define NODES_H //============================================================== #include "generate_node.h" #include "input_file_node.h" #include "take_node.h" #include "skip_node.h" #include "merge_node.h" #include "output_file_node.h" #include "size_node.h" #include "reverse_node.h" #include "dump_node.h" #include "paint_node.h" #include "struct_node.h" #include "graph_node.h" #ifndef Q_OS_WASM #include "com_reader_node.h" #include "com_writer_node.h" #endif // Q_OS_WASM #include "area_node.h" //============================================================== #endif // NODES_H